UNPKG

@vtaits/react-hook-form-schema

Version:

Integration of react-hook-form and @vtaits/form-schema

10 lines (7 loc) 351 B
import { InputSchema } from '@vtaits/form-schema/fields/input'; import { HTMLProps } from 'react'; import { F as FormApi, B as BaseFieldSchema } from './types-7iZNsJ6X.js'; type TextAreaSchema = Readonly<InputSchema<FormApi> & BaseFieldSchema & { textAreaProps?: Partial<HTMLProps<HTMLTextAreaElement>>; }>; export type { TextAreaSchema as T };