ontimize-web-ngx
Version:
Ontimize Web framework using Angular 15
14 lines (13 loc) • 458 B
TypeScript
import { AggregateFunction } from "../types/aggregate-function.type";
export interface GroupedColumnAggregateConfiguration {
attr: string;
title?: string;
aggregateName?: string;
aggregate: string;
aggregateFunction?: AggregateFunction;
}
export interface OTableColumnsGrouping {
columnsArray: string[];
getColumnGrouping(columnAttr: any): any;
useColumnAggregate(columnAttr: string, hasDefaultAggregate: boolean): boolean;
}