intelephense
1.14.41.16.1
lib/lib.es2017.object.d.tslib/lib.es2017.object.d.ts+4−4
Index: package/lib/lib.es2017.object.d.ts
===================================================================
--- package/lib/lib.es2017.object.d.ts
+++ package/lib/lib.es2017.object.d.ts
@@ -17,27 +17,27 @@
/// <reference no-default-lib="true"/>
interface ObjectConstructor {
/**
- * Returns an array of values of the enumerable properties of an object
+ * Returns an array of values of the enumerable own properties of an object
* @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.
*/
values<T>(o: { [s: string]: T; } | ArrayLike<T>): T[];
/**
- * Returns an array of values of the enumerable properties of an object
+ * Returns an array of values of the enumerable own properties of an object
* @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.
*/
values(o: {}): any[];
/**
- * Returns an array of key/values of the enumerable properties of an object
+ * Returns an array of key/values of the enumerable own properties of an object
* @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.
*/
entries<T>(o: { [s: string]: T; } | ArrayLike<T>): [string, T][];
/**
- * Returns an array of key/values of the enumerable properties of an object
+ * Returns an array of key/values of the enumerable own properties of an object
* @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.
*/
entries(o: {}): [string, any][];