@justjarethb/table-core
Version:
Fork of @tanstack/table-core with support for event listeners in different windows
14 lines (13 loc) • 440 B
TypeScript
import { AggregationFn } from './features/Grouping';
export declare const aggregationFns: {
sum: AggregationFn<any>;
min: AggregationFn<any>;
max: AggregationFn<any>;
extent: AggregationFn<any>;
mean: AggregationFn<any>;
median: AggregationFn<any>;
unique: AggregationFn<any>;
uniqueCount: AggregationFn<any>;
count: AggregationFn<any>;
};
export type BuiltInAggregationFn = keyof typeof aggregationFns;