ngx-dynamic-dashboard
Version:
an dashboard lib for angular 10
23 lines (22 loc) • 443 B
TypeScript
/**
* 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;
});
}