package.build.lib.aggregationFns.d.ts Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of table-core Show documentation
Show all versions of table-core Show documentation
Headless UI for building powerful tables & datagrids for TS/JS.
The newest version!
import { AggregationFn } from './features/Grouping';
export declare const aggregationFns: {
sum: AggregationFn;
min: AggregationFn;
max: AggregationFn;
extent: AggregationFn;
mean: AggregationFn;
median: AggregationFn;
unique: AggregationFn;
uniqueCount: AggregationFn;
count: AggregationFn;
};
export type BuiltInAggregationFn = keyof typeof aggregationFns;
© 2015 - 2024 Weber Informatics LLC | Privacy Policy