UNPKG

@cosva-lab/form-builder

Version:
5 lines (4 loc) 300 B
import type { value, PropsField, NameField } from '../types'; import { FieldBuilder } from '../utils/builders'; export declare function useField<V = value, Name extends NameField = string>(props: PropsField<V, Name> | (() => PropsField<V, Name>)): FieldBuilder<V, Name>; export default useField;