UNPKG

462 BTypeScriptView Raw
1// Type definitions for ag-grid v18.1.2
2// Project: http://www.ag-grid.com/
3// Definitions by: Niall Crosby <https://github.com/ag-grid/>
4import { IAggFunc } from "../entities/colDef";
5import { Column } from "../entities/column";
6export interface IAggFuncService {
7 addAggFuncs(aggFuncs: {
8 [key: string]: IAggFunc;
9 }): void;
10 addAggFunc(key: string, aggFunc: IAggFunc): void;
11 clear(): void;
12 getDefaultAggFunc(column: Column): string;
13}