@types/node 22.13.0 → 22.13.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.
Files changed (3) hide show
  1. node/README.md +1 -1
  2. node/fs/promises.d.ts +2 -2
  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: Fri, 31 Jan 2025 20:02:26 GMT
11
+ * Last updated: Tue, 04 Feb 2025 00:04:06 GMT
12
12
  * Dependencies: [undici-types](https://npmjs.com/package/undici-types)
13
13
 
14
14
  # Credits
node/fs/promises.d.ts CHANGED
@@ -112,7 +112,7 @@ declare module "fs/promises" {
112
112
  appendFile(
113
113
  data: string | Uint8Array,
114
114
  options?:
115
- | (ObjectEncodingOptions & FlagAndOpenMode & { flush?: boolean | undefined })
115
+ | (ObjectEncodingOptions & Abortable)
116
116
  | BufferEncoding
117
117
  | null,
118
118
  ): Promise<void>;
@@ -402,7 +402,7 @@ declare module "fs/promises" {
402
402
  writeFile(
403
403
  data: string | Uint8Array,
404
404
  options?:
405
- | (ObjectEncodingOptions & FlagAndOpenMode & Abortable & { flush?: boolean | undefined })
405
+ | (ObjectEncodingOptions & Abortable)
406
406
  | BufferEncoding
407
407
  | null,
408
408
  ): Promise<void>;
node/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@types/node",
3
- "version": "22.13.0",
3
+ "version": "22.13.1",
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": "cd9e00a55264d2d3f1c6f5656282dac0031f1492460f59d56baa12fabccf6631",
218
+ "typesPublisherContentHash": "69beac9c1e8d5c691e08c1b951885f67e08f6bcf26d648d5619edb1143add9fe",
219
219
  "typeScriptVersion": "5.0"
220
220
  }