@types/node 22.5.0 → 22.5.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 (4) hide show
  1. node/README.md +1 -1
  2. node/inspector.d.ts +1060 -110
  3. node/package.json +2 -2
  4. node/process.d.ts +2 -3
node/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@types/node",
3
- "version": "22.5.0",
3
+ "version": "22.5.1",
4
4
  "description": "TypeScript definitions for node",
5
5
  "homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node",
6
6
  "license": "MIT",
@@ -212,6 +212,6 @@
212
212
  "dependencies": {
213
213
  "undici-types": "~6.19.2"
214
214
  },
215
- "typesPublisherContentHash": "6e32f4b237ea4dd6efcade6ee8b163957a578f405f3c76453b372a2d32e00c03",
215
+ "typesPublisherContentHash": "68531658f8f892c98d6270ea1f2b8332049dafee094c65b9332cf6c1a860d36b",
216
216
  "typeScriptVersion": "4.8"
217
217
  }
node/process.d.ts CHANGED
@@ -45,9 +45,8 @@ declare module "process" {
45
45
  "node:https": typeof import("node:https");
46
46
  "inspector": typeof import("inspector");
47
47
  "node:inspector": typeof import("node:inspector");
48
- // FIXME: module is missed
49
- // "inspector/promises": typeof import("inspector/promises");
50
- // "node:inspector/promises": typeof import("node:inspector/promises");
48
+ "inspector/promises": typeof import("inspector/promises");
49
+ "node:inspector/promises": typeof import("node:inspector/promises");
51
50
  "module": typeof import("module");
52
51
  "node:module": typeof import("node:module");
53
52
  "net": typeof import("net");