@types/node 18.19.35 → 18.19.36
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/package.json +2 -2
- node v18.19/worker_threads.d.ts +3 -0
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: Mon, 17 Jun 2024
|
|
11
|
+
* Last updated: Mon, 17 Jun 2024 23:07:28 GMT
|
|
12
12
|
* Dependencies: [undici-types](https://npmjs.com/package/undici-types)
|
|
13
13
|
|
|
14
14
|
# Credits
|
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.36",
|
|
4
4
|
"description": "TypeScript definitions for node",
|
|
5
5
|
"homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node",
|
|
6
6
|
"license": "MIT",
|
|
@@ -217,6 +217,6 @@
|
|
|
217
217
|
"dependencies": {
|
|
218
218
|
"undici-types": "~5.26.4"
|
|
219
219
|
},
|
|
220
|
-
"typesPublisherContentHash": "
|
|
220
|
+
"typesPublisherContentHash": "c7afdaf50620e5c6f5c27f76dc0cf3f4554629807cd6648de59c4b768f4dc1d7",
|
|
221
221
|
"typeScriptVersion": "4.7"
|
|
222
222
|
}
|
node v18.19/worker_threads.d.ts
CHANGED
|
@@ -237,6 +237,9 @@ declare module "worker_threads" {
|
|
|
237
237
|
off(event: "message", listener: (value: any) => void): this;
|
|
238
238
|
off(event: "messageerror", listener: (error: Error) => void): this;
|
|
239
239
|
off(event: string | symbol, listener: (...args: any[]) => void): this;
|
|
240
|
+
addEventListener: EventTarget["addEventListener"];
|
|
241
|
+
dispatchEvent: EventTarget["dispatchEvent"];
|
|
242
|
+
removeEventListener: EventTarget["removeEventListener"];
|
|
240
243
|
}
|
|
241
244
|
interface WorkerOptions {
|
|
242
245
|
/**
|