apphouse
Version:
Component library for React that uses observable state management and theme-able components.
13 lines (12 loc) • 406 B
TypeScript
import { FormType, FormV2 } from './FormV2';
import { List } from '../List';
export declare class Forms {
forms: List<FormV2>;
updated: number;
constructor();
init: (form: FormType) => FormV2 | undefined;
deleteForm: (formId: string) => void;
getForm: (formId: string) => FormV2 | undefined;
getFormData: (formId: string) => {} | undefined;
}
export declare const forms: Forms;