UNPKG

amotify

Version:

UI Component for React,NextJS,esbuild

13 lines (12 loc) 310 B
import { KeyValueDict } from 'jmini'; declare namespace CollectForm { type FN = { (formName: string): Promise<Output>; }; type Output = { valid: boolean; data: KeyValueDict; }; } declare const CollectForm: CollectForm.FN; export { CollectForm, CollectForm as default };