@types/node 22.19.5 → 22.19.6

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 v22.19/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/v22.
9
9
 
10
10
  ### Additional Details
11
- * Last updated: Sat, 10 Jan 2026 01:30:18 GMT
11
+ * Last updated: Tue, 13 Jan 2026 15:03:39 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": "22.19.5",
3
+ "version": "22.19.6",
4
4
  "description": "TypeScript definitions for node",
5
5
  "homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node",
6
6
  "license": "MIT",
@@ -140,6 +140,6 @@
140
140
  "undici-types": "~6.21.0"
141
141
  },
142
142
  "peerDependencies": {},
143
- "typesPublisherContentHash": "b5253faf7d6d8fb210e44d230c218efe0e1f503e44d457b4a8cefbab49b1d5af",
143
+ "typesPublisherContentHash": "2c34fbfb2434c188f32b6207dea51fa3ffc96a1d6c16f9f909ecab2652fe9a02",
144
144
  "typeScriptVersion": "5.2"
145
145
  }
@@ -1787,8 +1787,17 @@ declare module "process" {
1787
1787
  */
1788
1788
  send?(
1789
1789
  message: any,
1790
- sendHandle?: SendHandle,
1791
- options?: MessageOptions,
1790
+ callback?: (error: Error | null) => void,
1791
+ ): boolean;
1792
+ send?(
1793
+ message: any,
1794
+ sendHandle: SendHandle,
1795
+ callback?: (error: Error | null) => void,
1796
+ ): boolean;
1797
+ send?(
1798
+ message: any,
1799
+ sendHandle: SendHandle,
1800
+ options: MessageOptions,
1792
1801
  callback?: (error: Error | null) => void,
1793
1802
  ): boolean;
1794
1803
  /**