UNPKG

@fluster.io/dev

Version:

9 lines (8 loc) 257 B
import { ReactNode } from 'react'; import { FieldValues, Path, UseFormReturn } from 'react-hook-form'; export interface FormInputProps<T extends FieldValues> { form: UseFormReturn<T>; name: Path<T>; label: ReactNode; desc?: string | null; }