@angular-generic-table/core
Version:
A generic table component for Angular
13 lines (12 loc) • 450 B
TypeScript
import { GtConfigField } from './gt-config-field';
import { GtConfigSetting } from './gt-config-setting';
import { GtRow } from './gt-row';
import { GtInformation } from './gt-information';
import { GtConfigTotal } from './gt-config-total';
export interface GtConfig<R extends GtRow> {
settings: Array<GtConfigSetting>;
fields: Array<GtConfigField<R, any>>;
totals?: Array<GtConfigTotal>;
data?: Array<R>;
info?: GtInformation;
}