@types/node 12.0.9 → 12.0.10

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/child_process.d.ts +2 -2
  3. node/package.json +2 -2
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: Fri, 21 Jun 2019 21:19:01 GMT
11
+ * Last updated: Fri, 21 Jun 2019 21:21:59 GMT
12
12
  * Dependencies: none
13
13
  * Global values: Buffer, NodeJS, Symbol, __dirname, __filename, clearImmediate, clearInterval, clearTimeout, console, exports, global, module, process, queueMicrotask, require, setImmediate, setInterval, setTimeout
14
14
 
node/child_process.d.ts CHANGED
@@ -310,8 +310,8 @@ declare module "child_process" {
310
310
  output: string[];
311
311
  stdout: T;
312
312
  stderr: T;
313
- status: number;
314
- signal: string;
313
+ status: number | null;
314
+ signal: string | null;
315
315
  error?: Error;
316
316
  }
317
317
  function spawnSync(command: string): SpawnSyncReturns<Buffer>;
node/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@types/node",
3
- "version": "12.0.9",
3
+ "version": "12.0.10",
4
4
  "description": "TypeScript definitions for Node.js",
5
5
  "license": "MIT",
6
6
  "contributors": [
@@ -206,6 +206,6 @@
206
206
  },
207
207
  "scripts": {},
208
208
  "dependencies": {},
209
- "typesPublisherContentHash": "655c7b1450bd364627a5b54fd9920f5956f5adfcdaaf569c34188499b861a0b9",
209
+ "typesPublisherContentHash": "3ff34a1eb668b8be080d707826d01d1aa6f5e3b4af754da986a78368dd1de1ec",
210
210
  "typeScriptVersion": "2.0"
211
211
  }