UNPKG

ngx-dynamic-dashboard

Version:
17 lines (16 loc) 472 B
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 {};