b2c40dc073aefb143f8427c5437129b1fcd5b8e0a850c4fb2498cd2cfb00b5a0ff4c2d38fc793f47ce282fa19345d327779a44793117a8a05f2b91b9e7d81e 867 B

12345678910111213141516171819202122232425262728293031323334
  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. declare const defaultExport: {
  17. add: typeof add;
  18. ceil: typeof ceil;
  19. divide: typeof divide;
  20. floor: typeof floor;
  21. max: typeof max;
  22. maxBy: typeof maxBy;
  23. mean: typeof mean;
  24. meanBy: typeof meanBy;
  25. min: typeof min;
  26. minBy: typeof minBy;
  27. multiply: typeof multiply;
  28. round: typeof round;
  29. subtract: typeof subtract;
  30. sum: typeof sum;
  31. sumBy: typeof sumBy;
  32. };
  33. export default defaultExport;