UNPKG

@inkline/inkline

Version:

Inkline is the intuitive UI Components library that gives you a developer-friendly foundation for building high-quality, accessible, and customizable Vue.js 3 Design Systems.

8 lines (7 loc) 301 B
import type { Ref } from 'vue'; import type { Form, FormSchema } from '@inkline/inkline/types'; export declare function useForm<T extends Form = Form>(formSchema: FormSchema<T>): { form: import("vue").ComputedRef<any>; schema: Ref<ResolvedFormSchema<T>>; validate: () => Promise<void>; };