@types/node 20.14.3 → 20.14.4

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/worker_threads.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: Mon, 17 Jun 2024 19:35:55 GMT
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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@types/node",
3
- "version": "20.14.3",
3
+ "version": "20.14.4",
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": "~5.26.4"
214
214
  },
215
- "typesPublisherContentHash": "09138fcdc2cd8a3b33375011f87ae601986cac2dac8feba1b0cf77b6cf2d04a5",
215
+ "typesPublisherContentHash": "51d4ba5b24961c3ba56036b7cd2fe8a17897079f173eb00cc8cf362445289de9",
216
216
  "typeScriptVersion": "4.7"
217
217
  }
node/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
  /**