1 | import add from "./add";
|
2 | import ceil from "./ceil";
|
3 | import divide from "./divide";
|
4 | import floor from "./floor";
|
5 | import max from "./max";
|
6 | import maxBy from "./maxBy";
|
7 | import mean from "./mean";
|
8 | import meanBy from "./meanBy";
|
9 | import min from "./min";
|
10 | import minBy from "./minBy";
|
11 | import multiply from "./multiply";
|
12 | import round from "./round";
|
13 | import subtract from "./subtract";
|
14 | import sum from "./sum";
|
15 | import sumBy from "./sumBy";
|
16 |
|
17 | declare const defaultExport: {
|
18 | add: typeof add;
|
19 | ceil: typeof ceil;
|
20 | divide: typeof divide;
|
21 | floor: typeof floor;
|
22 | max: typeof max;
|
23 | maxBy: typeof maxBy;
|
24 | mean: typeof mean;
|
25 | meanBy: typeof meanBy;
|
26 | min: typeof min;
|
27 | minBy: typeof minBy;
|
28 | multiply: typeof multiply;
|
29 | round: typeof round;
|
30 | subtract: typeof subtract;
|
31 | sum: typeof sum;
|
32 | sumBy: typeof sumBy;
|
33 | };
|
34 | export default defaultExport;
|