UNPKG

@ismail424/svelte-formly

Version:

<p align="center"> <img width="100%" height="300" src="./logo.png" alt="Svelte Formly" /> </p>

10 lines (9 loc) 528 B
import type { IForm } from './types'; export declare const formsStore: import("svelte/store").Writable<IForm[]>; export declare const storeForms: { subscribe: (this: void, run: import("svelte/store").Subscriber<IForm[]>, invalidate?: ((value?: IForm[] | undefined) => void) | undefined) => import("svelte/store").Unsubscriber; save: (newForm: IForm) => void; reset: () => void; resetValues: (form_name: string) => void; updateFieldValue: (form_name: string, field_name: string, field_value: any) => void; };