@types/node 16.18.92 → 16.18.94

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 v16.18/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/v16.
9
9
 
10
10
  ### Additional Details
11
- * Last updated: Sat, 30 Mar 2024 04:35:27 GMT
11
+ * Last updated: Tue, 02 Apr 2024 20:35:39 GMT
12
12
  * Dependencies: none
13
13
 
14
14
  # Credits
@@ -89,6 +89,8 @@ interface AddEventListenerOptions extends EventListenerOptions {
89
89
  once?: boolean;
90
90
  /** When `true`, serves as a hint that the listener will not call the `Event` object's `preventDefault()` method. Default: false. */
91
91
  passive?: boolean;
92
+ /** The listener will be removed when the given AbortSignal object's `abort()` method is called. */
93
+ signal?: AbortSignal;
92
94
  }
93
95
 
94
96
  interface EventListener {
@@ -2738,6 +2738,5 @@ declare module 'inspector' {
2738
2738
  function waitForDebugger(): void;
2739
2739
  }
2740
2740
  declare module 'node:inspector' {
2741
- import EventEmitter = require('inspector');
2742
- export = EventEmitter;
2741
+ export * from 'inspector';
2743
2742
  }
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@types/node",
3
- "version": "16.18.92",
3
+ "version": "16.18.94",
4
4
  "description": "TypeScript definitions for node",
5
5
  "homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node",
6
6
  "license": "MIT",
@@ -210,6 +210,6 @@
210
210
  },
211
211
  "scripts": {},
212
212
  "dependencies": {},
213
- "typesPublisherContentHash": "5926ea4342bdadbbc3f973f76497521e341f6a861f8f1cca1dce23edf058bb82",
213
+ "typesPublisherContentHash": "960af29691af141fe85b64ab5aaceec4f1f8bd0980008ca6db59a2331e3f4045",
214
214
  "typeScriptVersion": "4.7"
215
215
  }