wrap.d.ts 127 B

12345
  1. import types = require('./types');
  2. declare function wrap(fn: types.AnyFn, wrapper: types.AnyFn): types.AnyFn;
  3. export = wrap;