Merge pull request #1111 from ashwinr/master

Update bind method for underscore.d.ts
This commit is contained in:
basarat
2013-10-11 23:02:08 -07:00
+1 -1
View File
@@ -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;