gy-foo
Version:
A library that contains all models for the gy-web-project.
22 lines (21 loc) • 437 B
TypeScript
import { ItemConfigType } from 'golden-layout';
export interface Settings {
ent?: string;
fldlst?: string[];
additional?: any;
colwidth?: {
[fld: string]: number;
};
taborder?: string[];
goldenlayout?: ItemConfigType[];
sort?: {
field: string;
order: number;
}[];
group?: string[];
filter?: {
[field: string]: string;
};
misc?: any;
params?: any;
}