Remove extra overload

This commit is contained in:
Mohamed Hegazy
2017-02-13 20:49:37 -08:00
parent ef3b1138bb
commit 6feafc9483
6 changed files with 100 additions and 106 deletions

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

@@ -136,12 +136,6 @@ interface ObjectConstructor {
*/
getOwnPropertyNames(o: any): string[];
/**
* Creates an object that has the specified prototype.
* @param o Object to use as a prototype.
*/
create<T extends object>(o: T): T;
/**
* Creates an object that has the specified prototype or that has null prototype.
* @param o Object to use as a prototype. May be null.