@types/node 4.2.22 → 4.2.23
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 v4/README.md +2 -2
- node v4/index.d.ts +4 -1
- node v4/package.json +7 -2
node v4/README.md
CHANGED
|
@@ -8,9 +8,9 @@ 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/v4
|
|
9
9
|
|
|
10
10
|
Additional Details
|
|
11
|
-
* Last updated:
|
|
11
|
+
* Last updated: Wed, 15 Nov 2017 21:05:11 GMT
|
|
12
12
|
* Dependencies: events, net, stream, child_process, tls, http, crypto
|
|
13
13
|
* Global values: Buffer, SlowBuffer, __dirname, __filename, clearImmediate, clearInterval, clearTimeout, console, exports, global, module, process, require, setImmediate, setInterval, setTimeout
|
|
14
14
|
|
|
15
15
|
# Credits
|
|
16
|
-
These definitions were written by Microsoft TypeScript <http://typescriptlang.org>, DefinitelyTyped <https://github.com/DefinitelyTyped/DefinitelyTyped>.
|
|
16
|
+
These definitions were written by Microsoft TypeScript <http://typescriptlang.org>, DefinitelyTyped <https://github.com/DefinitelyTyped/DefinitelyTyped>, Sebastian Silbermann <https://github.com/eps1lon>.
|
node v4/index.d.ts
CHANGED
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
// Type definitions for Node.js 4.2
|
|
2
2
|
// Project: http://nodejs.org/
|
|
3
|
-
// Definitions by: Microsoft TypeScript <http://typescriptlang.org
|
|
3
|
+
// Definitions by: Microsoft TypeScript <http://typescriptlang.org>
|
|
4
|
+
// DefinitelyTyped <https://github.com/DefinitelyTyped/DefinitelyTyped>
|
|
5
|
+
// Sebastian Silbermann <https://github.com/eps1lon>
|
|
4
6
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
5
7
|
|
|
6
8
|
/************************************************
|
|
@@ -1847,6 +1849,7 @@ declare module "fs" {
|
|
|
1847
1849
|
fd?: number;
|
|
1848
1850
|
mode?: number;
|
|
1849
1851
|
autoClose?: boolean;
|
|
1852
|
+
highWaterMark?: number;
|
|
1850
1853
|
}): ReadStream;
|
|
1851
1854
|
export function createWriteStream(path: string, options?: {
|
|
1852
1855
|
flags?: string;
|
node v4/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@types/node",
|
|
3
|
-
"version": "4.2.
|
|
3
|
+
"version": "4.2.23",
|
|
4
4
|
"description": "TypeScript definitions for Node.js",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"contributors": [
|
|
@@ -11,6 +11,11 @@
|
|
|
11
11
|
{
|
|
12
12
|
"name": "DefinitelyTyped",
|
|
13
13
|
"url": "https://github.com/DefinitelyTyped/DefinitelyTyped"
|
|
14
|
+
},
|
|
15
|
+
{
|
|
16
|
+
"name": "Sebastian Silbermann",
|
|
17
|
+
"url": "https://github.com/eps1lon",
|
|
18
|
+
"githubUsername": "eps1lon"
|
|
14
19
|
}
|
|
15
20
|
],
|
|
16
21
|
"main": "",
|
|
@@ -20,6 +25,6 @@
|
|
|
20
25
|
},
|
|
21
26
|
"scripts": {},
|
|
22
27
|
"dependencies": {},
|
|
23
|
-
"typesPublisherContentHash": "
|
|
28
|
+
"typesPublisherContentHash": "1619eecc7ab25883a36bafc3b26890235270b7cba9e88dab33ce9856faff04e8",
|
|
24
29
|
"typeScriptVersion": "2.0"
|
|
25
30
|
}
|