mss-engine-forms
Version:
A simple typehead library developed by MSS development team to be used for dynamic forms
19 lines (18 loc) • 528 B
TypeScript
import { Breakpoint } from "./breakpoint.model";
import { DynamicFormTypes } from "./dynamic-form-type.enum";
export declare class FormModel {
[key: string]: {
label?: string;
placeholder?: string;
type?: DynamicFormTypes;
value?: string;
options?: any;
rules?: any;
breakpoint?: Breakpoint;
mask?: string;
restriction_special_cr?: boolean;
is_info?: boolean;
info_txt?: string;
customClass?: string;
};
}