@types/node 20.17.16 → 20.17.18

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: Thu, 23 Jan 2025 07:32:38 GMT
11
+ * Last updated: Thu, 13 Feb 2025 04:35:29 GMT
12
12
  * Dependencies: [undici-types](https://npmjs.com/package/undici-types)
13
13
 
14
14
  # Credits
node v20.17/assert.d.ts CHANGED
@@ -1015,6 +1015,7 @@ declare module "assert" {
1015
1015
  | "deepStrictEqual"
1016
1016
  | "ifError"
1017
1017
  | "strict"
1018
+ | "AssertionError"
1018
1019
  >
1019
1020
  & {
1020
1021
  (value: unknown, message?: string | Error): asserts value;
@@ -1030,6 +1031,7 @@ declare module "assert" {
1030
1031
  deepStrictEqual: typeof deepStrictEqual;
1031
1032
  ifError: typeof ifError;
1032
1033
  strict: typeof strict;
1034
+ AssertionError: typeof AssertionError;
1033
1035
  };
1034
1036
  }
1035
1037
  export = assert;
@@ -109,7 +109,7 @@ declare module "fs/promises" {
109
109
  appendFile(
110
110
  data: string | Uint8Array,
111
111
  options?:
112
- | (ObjectEncodingOptions & FlagAndOpenMode & { flush?: boolean | undefined })
112
+ | (ObjectEncodingOptions & Abortable)
113
113
  | BufferEncoding
114
114
  | null,
115
115
  ): Promise<void>;
@@ -395,7 +395,7 @@ declare module "fs/promises" {
395
395
  writeFile(
396
396
  data: string | Uint8Array,
397
397
  options?:
398
- | (ObjectEncodingOptions & FlagAndOpenMode & Abortable & { flush?: boolean | undefined })
398
+ | (ObjectEncodingOptions & Abortable)
399
399
  | BufferEncoding
400
400
  | null,
401
401
  ): Promise<void>;
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@types/node",
3
- "version": "20.17.16",
3
+ "version": "20.17.18",
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.19.2"
216
216
  },
217
217
  "peerDependencies": {},
218
- "typesPublisherContentHash": "42002710fa022c4e0a3a3e471bf72f181bc92ee61fed71ad279bc4b81b0f49d7",
218
+ "typesPublisherContentHash": "0081566ab55e5b6ed6bbcf3926dbac8eac29c673508637a3ffef8d2014f2e07c",
219
219
  "typeScriptVersion": "5.0"
220
220
  }