Merge pull request #17261 from unional/patch-2

Update es5.d.ts
This commit is contained in:
Nathan Shively-Sanders
2017-08-09 14:02:32 -07:00
committed by GitHub

2
src/lib/es5.d.ts vendored
View File

@@ -216,7 +216,7 @@ interface ObjectConstructor {
* Returns the names of the enumerable properties and methods of an object.
* @param o Object that contains the properties and methods. This can be an object that you created or an existing Document Object Model (DOM) object.
*/
keys(o: any): string[];
keys(o: {}): string[];
}
/**