@types/node 20.14.1 → 20.14.3
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/README.md +1 -1
- node/events.d.ts +5 -0
- node/globals.d.ts +1 -0
- node/package.json +2 -2
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,
|
11
|
+
* Last updated: Mon, 17 Jun 2024 19:35:55 GMT
|
12
12
|
* Dependencies: [undici-types](https://npmjs.com/package/undici-types)
|
13
13
|
|
14
14
|
# Credits
|
node/events.d.ts
CHANGED
@@ -280,6 +280,11 @@ declare module "events" {
|
|
280
280
|
*/
|
281
281
|
static on(
|
282
282
|
emitter: NodeJS.EventEmitter,
|
283
|
+
eventName: string | symbol,
|
284
|
+
options?: StaticEventEmitterOptions,
|
285
|
+
): AsyncIterableIterator<any>;
|
286
|
+
static on(
|
287
|
+
emitter: EventTarget,
|
283
288
|
eventName: string,
|
284
289
|
options?: StaticEventEmitterOptions,
|
285
290
|
): AsyncIterableIterator<any>;
|
node/globals.d.ts
CHANGED
node/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@types/node",
|
3
|
-
"version": "20.14.
|
3
|
+
"version": "20.14.3",
|
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": "
|
215
|
+
"typesPublisherContentHash": "09138fcdc2cd8a3b33375011f87ae601986cac2dac8feba1b0cf77b6cf2d04a5",
|
216
216
|
"typeScriptVersion": "4.7"
|
217
217
|
}
|