File tree Expand file tree Collapse file tree 1 file changed +11
-0
lines changed Expand file tree Collapse file tree 1 file changed +11
-0
lines changed Original file line number Diff line number Diff line change @@ -4,11 +4,22 @@ interface ObjectConstructor {
4
4
* @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.
5
5
*/
6
6
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
+ */
7
12
values ( o : any ) : any [ ] ;
13
+
8
14
/**
9
15
* Returns an array of key/values of the enumerable properties of an object
10
16
* @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
17
*/
12
18
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
+ */
13
24
entries ( o : any ) : [ string , any ] [ ] ;
14
25
}
You can’t perform that action at this time.
0 commit comments