@angular-generic-table/core
Version:
A generic table component for Angular
22 lines (21 loc) • 531 B
TypeScript
export interface GtConfigSetting {
objectKey: string;
visible?: boolean;
enabled?: boolean;
sort?: 'asc' | 'desc' | 'enable' | 'disable' | string;
sortEnabled?: boolean;
sortOrder?: number;
columnOrder?: number;
/**
* should column be exported to CSV?
*/
export?: boolean;
/**
* should we include this column when using global search?
*/
search?: boolean;
/**
* should settings be locked for editing? (default is false)
*/
lockSettings?: boolean;
}