UNPKG

table-core-with-skip-accessor-key-dot-notation

Version:

Fork of @tanstack/table-core v.8.21.2

14 lines (13 loc) 446 B
import { AggregationFn } from './features/ColumnGrouping'; 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;