Skip to content

Commit 82e84e2

Browse files
committed
Make sure all overloads have comments
1 parent 143fc91 commit 82e84e2

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

src/lib/es2017.object.d.ts

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,22 @@ interface ObjectConstructor {
44
* @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.
55
*/
66
values<T>(o: { [s: string]: T }): T[];
7+
8+
/**
9+
* Returns an array of values of the enumerable properties of an object
10+
* @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.
11+
*/
712
values(o: any): any[];
13+
814
/**
915
* Returns an array of key/values of the enumerable properties of an object
1016
* @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.
1117
*/
1218
entries<T>(o: { [s: string]: T }): [string, T][];
19+
20+
/**
21+
* Returns an array of key/values of the enumerable properties of an object
22+
* @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.
23+
*/
1324
entries(o: any): [string, any][];
1425
}

0 commit comments

Comments
 (0)