@types/node 16.18.46 → 16.18.48
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.js (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:
|
|
11
|
+
* Last updated: Sat, 02 Sep 2023 20:03:03 GMT
|
|
12
12
|
* Dependencies: none
|
|
13
13
|
* Global values: `AbortController`, `AbortSignal`, `__dirname`, `__filename`, `console`, `exports`, `gc`, `global`, `module`, `process`, `require`
|
|
14
14
|
|
node v16.18/async_hooks.d.ts
CHANGED
|
@@ -419,6 +419,7 @@ declare module 'async_hooks' {
|
|
|
419
419
|
* ```
|
|
420
420
|
* @since v13.10.0, v12.17.0
|
|
421
421
|
*/
|
|
422
|
+
run<R>(store: T, callback: () => R): R;
|
|
422
423
|
run<R, TArgs extends any[]>(store: T, callback: (...args: TArgs) => R, ...args: TArgs): R;
|
|
423
424
|
/**
|
|
424
425
|
* Runs a function synchronously outside of a context and returns its
|
node v16.18/inspector.d.ts
CHANGED
node v16.18/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@types/node",
|
|
3
|
-
"version": "16.18.
|
|
3
|
+
"version": "16.18.48",
|
|
4
4
|
"description": "TypeScript definitions for Node.js",
|
|
5
5
|
"homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node",
|
|
6
6
|
"license": "MIT",
|
|
@@ -227,6 +227,6 @@
|
|
|
227
227
|
},
|
|
228
228
|
"scripts": {},
|
|
229
229
|
"dependencies": {},
|
|
230
|
-
"typesPublisherContentHash": "
|
|
230
|
+
"typesPublisherContentHash": "bce8169de086a32203cbe532fc3b869863af5ee30e0cd23caa77cb8f4c960f4a",
|
|
231
231
|
"typeScriptVersion": "4.3"
|
|
232
232
|
}
|
|
@@ -419,6 +419,7 @@ declare module 'async_hooks' {
|
|
|
419
419
|
* ```
|
|
420
420
|
* @since v13.10.0, v12.17.0
|
|
421
421
|
*/
|
|
422
|
+
run<R>(store: T, callback: () => R): R;
|
|
422
423
|
run<R, TArgs extends any[]>(store: T, callback: (...args: TArgs) => R, ...args: TArgs): R;
|
|
423
424
|
/**
|
|
424
425
|
* Runs a function synchronously outside of a context and returns its
|
node v16.18/ts4.8/inspector.d.ts
CHANGED