@types/node 20.16.1 → 20.16.2
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.16/README.md +1 -1
- node v20.16/inspector.d.ts +1061 -111
- node v20.16/package.json +2 -2
- node v20.16/process.d.ts +2 -3
node v20.16/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@types/node",
|
3
|
-
"version": "20.16.
|
3
|
+
"version": "20.16.2",
|
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": "
|
215
|
+
"typesPublisherContentHash": "bfa190547a4fe06159207f447a2b225d7ee753bec878cab8292ade89f64f3a06",
|
216
216
|
"typeScriptVersion": "4.8"
|
217
217
|
}
|
node v20.16/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
|
-
|
49
|
-
|
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");
|