UNPKG

angular-bootstrap-italia

Version:

<p align="center"> <h1 align="center">Bootstrap Italia + Angular 9</h1>

49 lines (48 loc) 1.17 kB
export declare class FormBase<T> { value: T; key: string; parentFieldKey: string; parentFieldFilterKey: string; parentShowCondition: { parentKey: string; parentValue: any; }; formattedValueKey: string; label: string; required: boolean; disabled: boolean; order: number; controlType: string; type: string; class: string; options: { key: string; value: any; }[]; validMessage: string; invalidMessage: string; min: number; max: number; constructor(options?: { value?: T; key?: string; parentFieldKey?: string; parentFieldFilterKey?: string; parentShowCondition?: { parentKey: string; parentValue: any; }; formattedValueKey?: string; label?: string; required?: boolean; disabled?: boolean; order?: number; controlType?: string; type?: string; class?: string; validMessage?: string; invalidMessage?: string; min?: number; max?: number; }); }