diff --git a/underscore/underscore.d.ts b/underscore/underscore.d.ts index cd7a2867e..fb4d87e17 100644 --- a/underscore/underscore.d.ts +++ b/underscore/underscore.d.ts @@ -861,7 +861,7 @@ declare module _ { * @return `fn` with `this` bound to `object`. **/ export function bind( - func: (...as: any[]) => any, + func: Function, context: any, ...arguments: any[]): () => any;