@types/node 18.14.4 → 18.14.5

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.
Files changed (3) hide show
  1. node/README.md +1 -1
  2. node/package.json +2 -2
  3. node/ts4.8/util.d.ts +1 -1
node/README.md CHANGED
@@ -8,7 +8,7 @@ This package contains type definitions for Node.js (https://nodejs.org/).
8
8
  Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node.
9
9
 
10
10
  ### Additional Details
11
- * Last updated: Thu, 02 Mar 2023 08:32:40 GMT
11
+ * Last updated: Fri, 03 Mar 2023 05:02:54 GMT
12
12
  * Dependencies: none
13
13
  * Global values: `AbortController`, `AbortSignal`, `__dirname`, `__filename`, `console`, `exports`, `gc`, `global`, `module`, `process`, `require`, `structuredClone`
14
14
 
node/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@types/node",
3
- "version": "18.14.4",
3
+ "version": "18.14.5",
4
4
  "description": "TypeScript definitions for Node.js",
5
5
  "homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node",
6
6
  "license": "MIT",
@@ -232,6 +232,6 @@
232
232
  },
233
233
  "scripts": {},
234
234
  "dependencies": {},
235
- "typesPublisherContentHash": "89ce60011c9940ae0be0154682b51f620081287f9bdc3323d07b7c7aec0c45b6",
235
+ "typesPublisherContentHash": "3b78623b18336bdbad8d261a94e1d49ea918ee46642573ca4a45433440328550",
236
236
  "typeScriptVersion": "4.2"
237
237
  }
node/ts4.8/util.d.ts CHANGED
@@ -1482,7 +1482,7 @@ declare module 'util' {
1482
1482
  /**
1483
1483
  * Returns an iterator over each of the name-value pairs in the parameters.
1484
1484
  */
1485
- entries(): IterableIterator<[name: string, value: string]>;
1485
+ entries(): IterableIterator<[string, string]>;
1486
1486
  /**
1487
1487
  * Returns the value of the first name-value pair whose name is `name`.
1488
1488
  * If there are no such pairs, `null` is returned.