UNPKG

ngx-dynamic-dashboard

Version:
23 lines (22 loc) 443 B
/** * Created by jayhamilton on 2/3/17. */ export declare class PropertyBase<T> { value: T; key: string; label: string; required: boolean; order: number; controlType: string; options: any; type: string; constructor(props?: { value?: T; key?: string; label?: string; required?: boolean; order?: number; controlType?: string; options?: any; }); }