summaryrefslogtreecommitdiff
path: root/cli/tsc/dts/lib.es2017.object.d.ts
diff options
context:
space:
mode:
authorDavid Sherret <dsherret@users.noreply.github.com>2024-09-14 11:58:47 +0100
committerGitHub <noreply@github.com>2024-09-14 11:58:47 +0100
commitaf2d992ecd2b9320072164b6ee295c31a3194406 (patch)
tree0926e2852aa2c4eb300e1f54f4c84d7568589b3b /cli/tsc/dts/lib.es2017.object.d.ts
parent2c0bf6fd65b3276c4818c73028b19819608c8e70 (diff)
feat: TypeScript 5.6 and `npm:@types/node@22` (#25614)
Diffstat (limited to 'cli/tsc/dts/lib.es2017.object.d.ts')
-rw-r--r--cli/tsc/dts/lib.es2017.object.d.ts8
1 files changed, 4 insertions, 4 deletions
diff --git a/cli/tsc/dts/lib.es2017.object.d.ts b/cli/tsc/dts/lib.es2017.object.d.ts
index af9ef2f98..523b05dc8 100644
--- a/cli/tsc/dts/lib.es2017.object.d.ts
+++ b/cli/tsc/dts/lib.es2017.object.d.ts
@@ -18,25 +18,25 @@ and limitations under the License.
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][];