UNPKG

837 BTypeScriptView Raw
1import add from "./add";
2import ceil from "./ceil";
3import divide from "./divide";
4import floor from "./floor";
5import max from "./max";
6import maxBy from "./maxBy";
7import mean from "./mean";
8import meanBy from "./meanBy";
9import min from "./min";
10import minBy from "./minBy";
11import multiply from "./multiply";
12import round from "./round";
13import subtract from "./subtract";
14import sum from "./sum";
15import sumBy from "./sumBy";
16
17declare 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};
34export default defaultExport;