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

This commit is contained in:
falsandtru 2016-10-14 08:24:05 +09:00 committed by Mohamed Hegazy
parent e9242b1681
commit 7060f51fb2

3
lib/lib.d.ts vendored
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;