File tree 1 file changed +2
-2
lines changed
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ interface ObjectConstructor {
9
9
* Returns an array of values of the enumerable properties of an object
10
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
11
*/
12
- values ( o : any ) : any [ ] ;
12
+ values ( o : { } ) : any [ ] ;
13
13
14
14
/**
15
15
* Returns an array of key/values of the enumerable properties of an object
@@ -21,7 +21,7 @@ interface ObjectConstructor {
21
21
* Returns an array of key/values of the enumerable properties of an object
22
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
23
*/
24
- entries ( o : any ) : [ string , any ] [ ] ;
24
+ entries ( o : { } ) : [ string , any ] [ ] ;
25
25
26
26
/**
27
27
* Returns an object containing all own property descriptors of an object
You can’t perform that action at this time.
0 commit comments