UNPKG

@tanstack/table-core

Version:

Headless UI for building powerful tables & datagrids for TS/JS.

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;