ngx-dynamic-dashboard
Version:
an dashboard lib for angular 10
28 lines (27 loc) • 493 B
TypeScript
export interface Board {
rows: Row[];
title: string;
boardInstanceId: number;
id: number;
structure: Structure;
}
export interface Structure {
id: number;
rows: Row[];
structure: Structure;
}
export interface Row {
columns: Column[];
}
export interface Column {
gadgets: Gadget[];
}
export interface Gadget {
instanceId: number;
tags: any[];
componentType: String;
config: Config;
}
export interface Config {
propertyPages: any[];
}