@types/node 6.0.100 → 6.0.101
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 v6/README.md +1 -1
- node v6/index.d.ts +2 -2
- node v6/package.json +2 -2
node v6/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://www.github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node/v6
|
|
9
9
|
|
|
10
10
|
Additional Details
|
|
11
|
-
* Last updated:
|
|
11
|
+
* Last updated: Tue, 13 Feb 2018 20:54:40 GMT
|
|
12
12
|
* Dependencies: none
|
|
13
13
|
* Global values: Buffer, NodeJS, SlowBuffer, __dirname, __filename, clearImmediate, clearInterval, clearTimeout, console, exports, global, module, process, require, setImmediate, setInterval, setTimeout
|
|
14
14
|
|
node v6/index.d.ts
CHANGED
|
@@ -3897,12 +3897,12 @@ declare module "tty" {
|
|
|
3897
3897
|
import * as net from "net";
|
|
3898
3898
|
|
|
3899
3899
|
export function isatty(fd: number): boolean;
|
|
3900
|
-
export
|
|
3900
|
+
export class ReadStream extends net.Socket {
|
|
3901
3901
|
isRaw: boolean;
|
|
3902
3902
|
setRawMode(mode: boolean): void;
|
|
3903
3903
|
isTTY: boolean;
|
|
3904
3904
|
}
|
|
3905
|
-
export
|
|
3905
|
+
export class WriteStream extends net.Socket {
|
|
3906
3906
|
columns: number;
|
|
3907
3907
|
rows: number;
|
|
3908
3908
|
isTTY: boolean;
|
node v6/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@types/node",
|
|
3
|
-
"version": "6.0.
|
|
3
|
+
"version": "6.0.101",
|
|
4
4
|
"description": "TypeScript definitions for Node.js",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"contributors": [
|
|
@@ -40,6 +40,6 @@
|
|
|
40
40
|
},
|
|
41
41
|
"scripts": {},
|
|
42
42
|
"dependencies": {},
|
|
43
|
-
"typesPublisherContentHash": "
|
|
43
|
+
"typesPublisherContentHash": "fee8deacb47b97495ef617746680ad16d7a2a9c224fdf1aaf4bd02ed306729d2",
|
|
44
44
|
"typeScriptVersion": "2.0"
|
|
45
45
|
}
|