Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

FieldArrayMethodProps

useFieldArray focus option, ability to toggle focus on and off with shouldFocus and setting focus by either field index or name.

type FieldArrayMethodProps = {
shouldFocus?: boolean;
focusIndex?: number;
focusName?: string;
}
;

§Type

§
{
shouldFocus?: boolean;
focusIndex?: number;
focusName?: string;
}
[src]