lordwelch 6fab6022d0 Remove grab
Switch to using bootstrap-table
Add DownThemAll plugin
Remove Firefox plugin
2021-01-09 16:36:18 -08: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;
}