UNPKG

@chartshq/datamodel

Version:

An environment with `node`, `rustup` and `wasm-pack` set up.

12 lines (11 loc) 262 B
export declare enum AggregationType { SUM = "sum", AVG = "avg", MIN = "min", MAX = "max", FIRST = "first", LAST = "last", COUNT = "count", STD = "std" } export declare const _aggregationResolver: (agg: AggregationType) => number;