@types/node 22.10.4 → 22.10.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/module.d.ts +8 -1
  3. node/package.json +2 -2
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: Thu, 02 Jan 2025 18:37:07 GMT
11
+ * Last updated: Fri, 03 Jan 2025 06:37:24 GMT
12
12
  * Dependencies: [undici-types](https://npmjs.com/package/undici-types)
13
13
 
14
14
  # Credits
node/module.d.ts CHANGED
@@ -125,7 +125,14 @@ declare module "module" {
125
125
  interface ImportAttributes extends NodeJS.Dict<string> {
126
126
  type?: string | undefined;
127
127
  }
128
- type ModuleFormat = "builtin" | "commonjs" | "json" | "module" | "wasm";
128
+ type ModuleFormat =
129
+ | "builtin"
130
+ | "commonjs"
131
+ | "commonjs-typescript"
132
+ | "json"
133
+ | "module"
134
+ | "module-typescript"
135
+ | "wasm";
129
136
  type ModuleSource = string | ArrayBuffer | NodeJS.TypedArray;
130
137
  interface GlobalPreloadContext {
131
138
  port: MessagePort;
node/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@types/node",
3
- "version": "22.10.4",
3
+ "version": "22.10.5",
4
4
  "description": "TypeScript definitions for node",
5
5
  "homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node",
6
6
  "license": "MIT",
@@ -215,6 +215,6 @@
215
215
  "undici-types": "~6.20.0"
216
216
  },
217
217
  "peerDependencies": {},
218
- "typesPublisherContentHash": "d33a55fcd6201de40949649f382bcf0442b534ed375ad196375040c1c628fbee",
218
+ "typesPublisherContentHash": "5204c15eb02bc9a74afae771b0dc25867021c6aa886a7aad0f8c75fe7571881e",
219
219
  "typeScriptVersion": "5.0"
220
220
  }