@types/node 20.10.0 → 20.10.1

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.
node/README.md CHANGED
@@ -8,7 +8,7 @@ This package contains type definitions for node (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: Fri, 24 Nov 2023 09:07:15 GMT
11
+ * Last updated: Wed, 29 Nov 2023 19:35:57 GMT
12
12
  * Dependencies: [undici-types](https://npmjs.com/package/undici-types)
13
13
 
14
14
  # Credits
node/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@types/node",
3
- "version": "20.10.0",
3
+ "version": "20.10.1",
4
4
  "description": "TypeScript definitions for node",
5
5
  "homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node",
6
6
  "license": "MIT",
@@ -224,7 +224,7 @@
224
224
  "dependencies": {
225
225
  "undici-types": "~5.26.4"
226
226
  },
227
- "typesPublisherContentHash": "113c7907419784bd540719fa975d139f836a902f43f8f562120dc8ec3fa551c2",
228
- "typeScriptVersion": "4.5",
227
+ "typesPublisherContentHash": "0b15d1ef7892c4399bd0b2f190b187e4127a3f86fbd7ce440409b864961cdc93",
228
+ "typeScriptVersion": "4.6",
229
229
  "nonNpm": true
230
230
  }
node/process.d.ts CHANGED
@@ -902,6 +902,13 @@ declare module "process" {
902
902
  * @experimental
903
903
  */
904
904
  readonly sourceMapsEnabled: boolean;
905
+ /**
906
+ * This function enables or disables the Source Map v3 support for stack traces.
907
+ * It provides same features as launching Node.js process with commandline options --enable-source-maps.
908
+ * @since v16.6.0
909
+ * @experimental
910
+ */
911
+ setSourceMapsEnabled(value: boolean): void;
905
912
  /**
906
913
  * The `process.version` property contains the Node.js version string.
907
914
  *
node/ts4.8/process.d.ts CHANGED
@@ -902,6 +902,13 @@ declare module "process" {
902
902
  * @experimental
903
903
  */
904
904
  readonly sourceMapsEnabled: boolean;
905
+ /**
906
+ * This function enables or disables the Source Map v3 support for stack traces.
907
+ * It provides same features as launching Node.js process with commandline options --enable-source-maps.
908
+ * @since v16.6.0
909
+ * @experimental
910
+ */
911
+ setSourceMapsEnabled(value: boolean): void;
905
912
  /**
906
913
  * The `process.version` property contains the Node.js version string.
907
914
  *