UNPKG

1.35 kBTypeScriptView Raw
1import after from "./after";
2import ary from "./ary";
3import before from "./before";
4import bind from "./bind";
5import bindKey from "./bindKey";
6import curry from "./curry";
7import curryRight from "./curryRight";
8import debounce from "./debounce";
9import defer from "./defer";
10import delay from "./delay";
11import flip from "./flip";
12import memoize from "./memoize";
13import negate from "./negate";
14import once from "./once";
15import overArgs from "./overArgs";
16import partial from "./partial";
17import partialRight from "./partialRight";
18import rearg from "./rearg";
19import rest from "./rest";
20import spread from "./spread";
21import throttle from "./throttle";
22import unary from "./unary";
23import wrap from "./wrap";
24
25declare 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};
50export default defaultExport;