@types/node 14.14.8 → 14.14.9

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.
Files changed (3) hide show
  1. node/README.md +1 -1
  2. node/package.json +2 -2
  3. node/process.d.ts +1 -1
node/README.md CHANGED
@@ -8,7 +8,7 @@ This package contains type definitions for Node.js (http://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: Tue, 17 Nov 2020 23:36:37 GMT
11
+ * Last updated: Thu, 19 Nov 2020 21:27:20 GMT
12
12
  * Dependencies: none
13
13
  * Global values: `Buffer`, `__dirname`, `__filename`, `clearImmediate`, `clearInterval`, `clearTimeout`, `console`, `exports`, `global`, `module`, `process`, `queueMicrotask`, `require`, `setImmediate`, `setInterval`, `setTimeout`
14
14
 
node/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@types/node",
3
- "version": "14.14.8",
3
+ "version": "14.14.9",
4
4
  "description": "TypeScript definitions for Node.js",
5
5
  "license": "MIT",
6
6
  "contributors": [
@@ -246,6 +246,6 @@
246
246
  },
247
247
  "scripts": {},
248
248
  "dependencies": {},
249
- "typesPublisherContentHash": "351a3980d44f8de8267e6560cbd5f2a372142ba442b2aeae8142aaf092950a7a",
249
+ "typesPublisherContentHash": "2f042275fd4e9e164f29f7f2c8d2480c637feb8732124486b1f906ff0d1f4dc3",
250
250
  "typeScriptVersion": "3.2"
251
251
  }
node/process.d.ts CHANGED
@@ -192,7 +192,7 @@ declare module "process" {
192
192
  argv0: string;
193
193
  execArgv: string[];
194
194
  execPath: string;
195
- abort(): void;
195
+ abort(): never;
196
196
  chdir(directory: string): void;
197
197
  cwd(): string;
198
198
  debugPort: number;