6 lines
107 B
TypeScript
6 lines
107 B
TypeScript
|
import types = require('./types');
|
||
|
|
||
|
declare function curry(fn: types.AnyFn): types.AnyFn;
|
||
|
|
||
|
export = curry;
|