downthemall/uikit/lib/config.ts
2019-08-26 19:50:06 +02:00

14 lines
244 B
TypeScript

"use strict";
// License: MIT
export interface ColumnConfig {
visible: boolean;
width: number;
}
export type ColumnConfigs ={ [name: string]: ColumnConfig };
export interface TableConfig {
version?: number;
columns?: ColumnConfigs;
}