@types/node 18.19.119 → 18.19.121
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 v18.19/README.md +1 -1
- node v18.19/http.d.ts +1 -1
- node v18.19/module.d.ts +2 -7
- node v18.19/package.json +2 -2
node v18.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/v18.
|
|
9
9
|
|
|
10
10
|
### Additional Details
|
|
11
|
-
* Last updated: Tue,
|
|
11
|
+
* Last updated: Tue, 29 Jul 2025 02:20:34 GMT
|
|
12
12
|
* Dependencies: [undici-types](https://npmjs.com/package/undici-types)
|
|
13
13
|
|
|
14
14
|
# Credits
|
node v18.19/http.d.ts
CHANGED
node v18.19/module.d.ts
CHANGED
|
@@ -316,15 +316,10 @@ declare module "module" {
|
|
|
316
316
|
function runMain(main?: string): void;
|
|
317
317
|
function wrap(code: string): string;
|
|
318
318
|
}
|
|
319
|
-
type ImportMetaDOMCompat = typeof globalThis extends { onmessage: any } ? {
|
|
320
|
-
resolve(specifier: string): string;
|
|
321
|
-
}
|
|
322
|
-
: {
|
|
323
|
-
resolve?(specifier: string, parent?: string | URL): Promise<string>;
|
|
324
|
-
};
|
|
325
319
|
global {
|
|
326
|
-
interface ImportMeta
|
|
320
|
+
interface ImportMeta {
|
|
327
321
|
url: string;
|
|
322
|
+
resolve(specifier: string, parent?: string | URL): string;
|
|
328
323
|
}
|
|
329
324
|
namespace NodeJS {
|
|
330
325
|
interface Module {
|
node v18.19/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@types/node",
|
|
3
|
-
"version": "18.19.
|
|
3
|
+
"version": "18.19.121",
|
|
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": "~5.26.4"
|
|
141
141
|
},
|
|
142
142
|
"peerDependencies": {},
|
|
143
|
-
"typesPublisherContentHash": "
|
|
143
|
+
"typesPublisherContentHash": "75cb547e98e874a53ba6a898bb3a1426f2d0e6bf936ef7ce3877feb45786882f",
|
|
144
144
|
"typeScriptVersion": "5.1"
|
|
145
145
|
}
|