ngx-dynamic-dashboard
Version:
an dashboard lib for angular 10
17 lines (16 loc) • 472 B
TypeScript
import { PropertyBase } from '../../dynamic-form/property-base';
/**
* Created by jayhamilton on 6/15/17.
*/
export declare class GadgetConfigModel {
propertyPages: PropertyPage[];
constructor(config: any);
}
declare class PropertyPage {
displayName: string;
groupId: string;
position: number;
properties: PropertyBase<any>[];
constructor(displayName: string, groupId: string, position: number, properties: PropertyBase<any>[]);
}
export {};