@types/node 14.18.56 → 14.18.58
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 v14.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/v14.
|
|
9
9
|
|
|
10
10
|
### Additional Details
|
|
11
|
-
* Last updated:
|
|
11
|
+
* Last updated: Sat, 02 Sep 2023 20:03:04 GMT
|
|
12
12
|
* Dependencies: none
|
|
13
13
|
* Global values: `AbortController`, `AbortSignal`, `Buffer`, `__dirname`, `__filename`, `clearImmediate`, `clearInterval`, `clearTimeout`, `console`, `exports`, `global`, `module`, `process`, `queueMicrotask`, `require`, `setImmediate`, `setInterval`, `setTimeout`
|
|
14
14
|
|
node v14.18/async_hooks.d.ts
CHANGED
|
@@ -199,6 +199,7 @@ declare module 'async_hooks' {
|
|
|
199
199
|
* stacktrace will not be impacted by this call and the context will be exited.
|
|
200
200
|
*/
|
|
201
201
|
// TODO: Apply generic vararg once available
|
|
202
|
+
run<R>(store: T, callback: () => R): R;
|
|
202
203
|
run<R>(store: T, callback: (...args: any[]) => R, ...args: any[]): R;
|
|
203
204
|
|
|
204
205
|
/**
|
node v14.18/inspector.d.ts
CHANGED
node v14.18/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@types/node",
|
|
3
|
-
"version": "14.18.
|
|
3
|
+
"version": "14.18.58",
|
|
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": "8ca66991a649945fd688ec1da3b8b233d3e792c2411451fea89bcbf12a66755e",
|
|
231
231
|
"typeScriptVersion": "4.3"
|
|
232
232
|
}
|
|
@@ -199,6 +199,7 @@ declare module 'async_hooks' {
|
|
|
199
199
|
* stacktrace will not be impacted by this call and the context will be exited.
|
|
200
200
|
*/
|
|
201
201
|
// TODO: Apply generic vararg once available
|
|
202
|
+
run<R>(store: T, callback: () => R): R;
|
|
202
203
|
run<R>(store: T, callback: (...args: any[]) => R, ...args: any[]): R;
|
|
203
204
|
|
|
204
205
|
/**
|
node v14.18/ts4.8/inspector.d.ts
CHANGED