@types/node 20.17.0 → 20.17.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 v20.17/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/v20.
9
9
 
10
10
  ### Additional Details
11
- * Last updated: Wed, 23 Oct 2024 14:02:36 GMT
11
+ * Last updated: Fri, 25 Oct 2024 12:43:47 GMT
12
12
  * Dependencies: [undici-types](https://npmjs.com/package/undici-types)
13
13
 
14
14
  # Credits
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@types/node",
3
- "version": "20.17.0",
3
+ "version": "20.17.1",
4
4
  "description": "TypeScript definitions for node",
5
5
  "homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node",
6
6
  "license": "MIT",
@@ -220,6 +220,6 @@
220
220
  "undici-types": "~6.19.2"
221
221
  },
222
222
  "peerDependencies": {},
223
- "typesPublisherContentHash": "9cef648f04b5992e1dfca68a79575ad391a019a0c0dc0e237b99be9e79c8f046",
223
+ "typesPublisherContentHash": "b76751733a79938f7e78a1425b8fb5d1fb2bac8f121d0cc05e642361c9c1ce88",
224
224
  "typeScriptVersion": "4.8"
225
225
  }
node v20.17/vm.d.ts CHANGED
@@ -907,13 +907,12 @@ declare module "vm" {
907
907
  */
908
908
  namespace constants {
909
909
  /**
910
- * Stability: 1.1 - Active development
911
- *
912
910
  * A constant that can be used as the `importModuleDynamically` option to `vm.Script`
913
911
  * and `vm.compileFunction()` so that Node.js uses the default ESM loader from the main
914
912
  * context to load the requested module.
915
913
  *
916
914
  * For detailed information, see [Support of dynamic `import()` in compilation APIs](https://nodejs.org/docs/latest-v20.x/api/vm.html#support-of-dynamic-import-in-compilation-apis).
915
+ * @since v20.12.0
917
916
  */
918
917
  const USE_MAIN_CONTEXT_DEFAULT_LOADER: number;
919
918
  }