@typescript-deploys/pr-build 5.6.0-pr-58866-4 → 5.6.0-pr-59003-10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/lib.es2017.object.d.ts +4 -4
- package/lib/tsc.js +197 -133
- package/lib/typescript.d.ts +39 -84
- package/lib/typescript.js +352 -306
- package/package.json +13 -13
|
@@ -18,25 +18,25 @@ and limitations under the License.
|
|
|
18
18
|
|
|
19
19
|
interface ObjectConstructor {
|
|
20
20
|
/**
|
|
21
|
-
* Returns an array of values of the enumerable properties of an object
|
|
21
|
+
* Returns an array of values of the enumerable own 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
24
|
values<T>(o: { [s: string]: T; } | ArrayLike<T>): T[];
|
|
25
25
|
|
|
26
26
|
/**
|
|
27
|
-
* Returns an array of values of the enumerable properties of an object
|
|
27
|
+
* Returns an array of values of the enumerable own properties of an object
|
|
28
28
|
* @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.
|
|
29
29
|
*/
|
|
30
30
|
values(o: {}): any[];
|
|
31
31
|
|
|
32
32
|
/**
|
|
33
|
-
* Returns an array of key/values of the enumerable properties of an object
|
|
33
|
+
* Returns an array of key/values of the enumerable own properties of an object
|
|
34
34
|
* @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.
|
|
35
35
|
*/
|
|
36
36
|
entries<T>(o: { [s: string]: T; } | ArrayLike<T>): [string, T][];
|
|
37
37
|
|
|
38
38
|
/**
|
|
39
|
-
* Returns an array of key/values of the enumerable properties of an object
|
|
39
|
+
* Returns an array of key/values of the enumerable own properties of an object
|
|
40
40
|
* @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.
|
|
41
41
|
*/
|
|
42
42
|
entries(o: {}): [string, any][];
|