@types/node 14.18.41 → 14.18.43
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 +1 -1
- node v14.18/globals.d.ts +2 -1
- node v14.18/package.json +2 -2
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: Tue, 25 Apr 2023 21:32:51 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/globals.d.ts
CHANGED
|
@@ -104,6 +104,7 @@ interface AbortSignal {
|
|
|
104
104
|
* @since v14.7.0
|
|
105
105
|
*/
|
|
106
106
|
readonly aborted: boolean;
|
|
107
|
+
readonly reason: any;
|
|
107
108
|
}
|
|
108
109
|
|
|
109
110
|
declare var AbortController: {
|
|
@@ -527,7 +528,7 @@ declare namespace NodeJS {
|
|
|
527
528
|
/**
|
|
528
529
|
* Name of the script [if this function was defined in a script]
|
|
529
530
|
*/
|
|
530
|
-
getFileName(): string |
|
|
531
|
+
getFileName(): string | undefined;
|
|
531
532
|
|
|
532
533
|
/**
|
|
533
534
|
* Current line number [if this function was defined in a script]
|
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.43",
|
|
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": "8247fa851a10ad4b2d18280b19a1df533acc846694864a41219ddea760fb6ec3",
|
|
231
231
|
"typeScriptVersion": "4.3"
|
|
232
232
|
}
|