bind.d.ts 131 B

12345
  1. import types = require('./types');
  2. declare function bind(fn: types.AnyFn, ctx: any, ...args: any[]): types.AnyFn;
  3. export = bind;