Fix the Function interface (#11269) (#11293)

This commit is contained in:
falsandtru
2016-10-13 16:24:05 -07:00
committed by Mohamed Hegazy
parent e9242b1681
commit 7060f51fb2
+3
View File
@@ -260,6 +260,9 @@ interface Function {
*/
bind(this: Function, thisArg: any, ...argArray: any[]): any;
/** Returns a string representation of an object. */
toString(): string;
prototype: any;
readonly length: number;