ngx-dynamic-dashboard
Version:
an dashboard lib for angular 10
29 lines (28 loc) • 534 B
TypeScript
/**
* Created by jayhamilton on 1/31/17.
*/
export declare const boardLayouts: ({
id: number;
boardInstanceId: number;
title: string;
checked: boolean;
structure: string;
rows: {
columns: {
styleClass: string;
}[];
}[];
boardId?: undefined;
} | {
id: number;
boardId: number;
title: string;
checked: boolean;
structure: string;
rows: {
columns: {
styleClass: string;
}[];
}[];
boardInstanceId?: undefined;
})[];