@types/node 25.0.0 → 25.0.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/package.json +2 -2
  3. node/util.d.ts +3 -0
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: Wed, 10 Dec 2025 19:02:30 GMT
11
+ * Last updated: Fri, 12 Dec 2025 00:47:02 GMT
12
12
  * Dependencies: [undici-types](https://npmjs.com/package/undici-types)
13
13
 
14
14
  # Credits
node/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@types/node",
3
- "version": "25.0.0",
3
+ "version": "25.0.1",
4
4
  "description": "TypeScript definitions for node",
5
5
  "homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node",
6
6
  "license": "MIT",
@@ -150,6 +150,6 @@
150
150
  "undici-types": "~7.16.0"
151
151
  },
152
152
  "peerDependencies": {},
153
- "typesPublisherContentHash": "358d9e288f53b02f484b0f2cc72378f0f2c3c1d563a28e74f187d8ce1492a4f1",
153
+ "typesPublisherContentHash": "ebf0dcd736cafaf9afe481dddb915eac63d9cd45eddc1dd09e32c138468b5a0b",
154
154
  "typeScriptVersion": "5.2"
155
155
  }
node/util.d.ts CHANGED
@@ -1246,6 +1246,9 @@ declare module "node:util" {
1246
1246
  text: string,
1247
1247
  options?: StyleTextOptions,
1248
1248
  ): string;
1249
+ /** @deprecated This alias will be removed in a future version. Use the canonical `TextEncoderEncodeIntoResult` instead. */
1250
+ // TODO: remove in future major
1251
+ export interface EncodeIntoResult extends TextEncoderEncodeIntoResult {}
1249
1252
  //// parseArgs
1250
1253
  /**
1251
1254
  * Provides a higher level API for command-line argument parsing than interacting