UNPKG
@chartshq/datamodel
Version:
latest (3.0.0)
3.0.0
An environment with `node`, `rustup` and `wasm-pack` set up.
@chartshq/datamodel
/
dist
/
esm
/
web
/
src
/
constants
/
aggregations.d.ts
12 lines
(11 loc)
•
262 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
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
;