@types/node 12.12.6 → 12.12.7

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 +4 -4
  3. node/stream.d.ts +6 -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, 05 Nov 2019 21:05:05 GMT
11
+ * Last updated: Fri, 08 Nov 2019 22:57:07 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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@types/node",
3
- "version": "12.12.6",
3
+ "version": "12.12.7",
4
4
  "description": "TypeScript definitions for Node.js",
5
5
  "license": "MIT",
6
6
  "contributors": [
@@ -201,7 +201,7 @@
201
201
  }
202
202
  ],
203
203
  "main": "",
204
- "types": "index",
204
+ "types": "index.d.ts",
205
205
  "typesVersions": {
206
206
  ">=3.2.0-0": {
207
207
  "*": [
@@ -216,6 +216,6 @@
216
216
  },
217
217
  "scripts": {},
218
218
  "dependencies": {},
219
- "typesPublisherContentHash": "367501b118848fefd37735930a6d2151fc9018e2e85a33ac6643ea132ef547c3",
220
- "typeScriptVersion": "2.0"
219
+ "typesPublisherContentHash": "a02ca3410df572421b5c3f9cb42feca6989e17002defcbd3d03e36d8e38e54c2",
220
+ "typeScriptVersion": "2.8"
221
221
  }
node/stream.d.ts CHANGED
@@ -307,7 +307,12 @@ declare module "stream" {
307
307
  ): Promise<void>;
308
308
  }
309
309
 
310
- interface Pipe { }
310
+ interface Pipe {
311
+ close(): void;
312
+ hasRef(): boolean;
313
+ ref(): void;
314
+ unref(): void;
315
+ }
311
316
  }
312
317
 
313
318
  export = internal;