UNPKG

ontimize-web-ngx

Version:
14 lines (13 loc) 458 B
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; }