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 |
|
25 | declare const defaultExport: {
|
26 | after: typeof after;
|
27 | ary: typeof ary;
|
28 | before: typeof before;
|
29 | bind: typeof bind;
|
30 | bindKey: typeof bindKey;
|
31 | curry: typeof curry;
|
32 | curryRight: typeof curryRight;
|
33 | debounce: typeof debounce;
|
34 | defer: typeof defer;
|
35 | delay: typeof delay;
|
36 | flip: typeof flip;
|
37 | memoize: typeof memoize;
|
38 | negate: typeof negate;
|
39 | once: typeof once;
|
40 | overArgs: typeof overArgs;
|
41 | partial: typeof partial;
|
42 | partialRight: typeof partialRight;
|
43 | rearg: typeof rearg;
|
44 | rest: typeof rest;
|
45 | spread: typeof spread;
|
46 | throttle: typeof throttle;
|
47 | unary: typeof unary;
|
48 | wrap: typeof wrap;
|
49 | };
|
50 | export default defaultExport;
|