UNPKG

417 BTypeScriptView Raw
1import { FieldConfig } from "./field-config.model";
2export declare class FormSchemaModel {
3 _id: string;
4 name: string;
5 description: string;
6 form: FieldConfig;
7 events: {
8 accept: {
9 show: boolean;
10 text: string;
11 };
12 cancel: {
13 show: boolean;
14 text: string;
15 };
16 };
17 constructor();
18 init(): void;
19}