UNPKG

@vnmfify/core

Version:

```shell npm i @vnmfify/core -S ```

10 lines (9 loc) 253 B
interface UseFormValueOptions { defaultValue?: any; } export default function useFormValue(name?: string, options?: UseFormValueOptions): { readonly value: any; setValue: (value: any) => void; getValue: () => any; }; export {};