6 lines
135 B
TypeScript
6 lines
135 B
TypeScript
|
import types = require('./types');
|
||
|
|
||
|
declare function universalify(fn: types.AnyFn, type: string): types.AnyFn;
|
||
|
|
||
|
export = universalify;
|