71ea179bec0e291bb385bdb56f1d8686a8fceb3d64f88425d6fa78ba5a2a83b4bc98bd8bafad7fe10fa069763a3feafdb11245f61271a80469eb510d48e45e 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. import after from "./after";
  2. import ary from "./ary";
  3. import before from "./before";
  4. import bind from "./bind";
  5. import bindKey from "./bindKey";
  6. import curry from "./curry";
  7. import curryRight from "./curryRight";
  8. import debounce from "./debounce";
  9. import defer from "./defer";
  10. import delay from "./delay";
  11. import flip from "./flip";
  12. import memoize from "./memoize";
  13. import negate from "./negate";
  14. import once from "./once";
  15. import overArgs from "./overArgs";
  16. import partial from "./partial";
  17. import partialRight from "./partialRight";
  18. import rearg from "./rearg";
  19. import rest from "./rest";
  20. import spread from "./spread";
  21. import throttle from "./throttle";
  22. import unary from "./unary";
  23. import wrap from "./wrap";
  24. declare const defaultExport: {
  25. after: typeof after;
  26. ary: typeof ary;
  27. before: typeof before;
  28. bind: typeof bind;
  29. bindKey: typeof bindKey;
  30. curry: typeof curry;
  31. curryRight: typeof curryRight;
  32. debounce: typeof debounce;
  33. defer: typeof defer;
  34. delay: typeof delay;
  35. flip: typeof flip;
  36. memoize: typeof memoize;
  37. negate: typeof negate;
  38. once: typeof once;
  39. overArgs: typeof overArgs;
  40. partial: typeof partial;
  41. partialRight: typeof partialRight;
  42. rearg: typeof rearg;
  43. rest: typeof rest;
  44. spread: typeof spread;
  45. throttle: typeof throttle;
  46. unary: typeof unary;
  47. wrap: typeof wrap;
  48. };
  49. export default defaultExport;