@types/node 8.10.58 → 8.10.59
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 v8/README.md +1 -1
- node v8/base.d.ts +8 -0
- node v8/package.json +4 -4
node v8/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/v8
|
|
9
9
|
|
|
10
10
|
Additional Details
|
|
11
|
-
* Last updated:
|
|
11
|
+
* Last updated: Fri, 08 Nov 2019 22:57:14 GMT
|
|
12
12
|
* Dependencies: none
|
|
13
13
|
* Global values: Buffer, NodeJS, SlowBuffer, Symbol, __dirname, __filename, clearImmediate, clearInterval, clearTimeout, console, exports, global, module, process, require, setImmediate, setInterval, setTimeout
|
|
14
14
|
|
node v8/base.d.ts
CHANGED
|
@@ -2006,6 +2006,7 @@ declare module "child_process" {
|
|
|
2006
2006
|
stdin: stream.Writable;
|
|
2007
2007
|
stdout: stream.Readable;
|
|
2008
2008
|
stderr: stream.Readable;
|
|
2009
|
+
readonly channel?: stream.Pipe | null;
|
|
2009
2010
|
stdio: StdioStreams;
|
|
2010
2011
|
killed: boolean;
|
|
2011
2012
|
pid: number;
|
|
@@ -5625,6 +5626,13 @@ declare module "stream" {
|
|
|
5625
5626
|
}
|
|
5626
5627
|
|
|
5627
5628
|
export class PassThrough extends Transform { }
|
|
5629
|
+
|
|
5630
|
+
interface Pipe {
|
|
5631
|
+
close(): void;
|
|
5632
|
+
hasRef(): boolean;
|
|
5633
|
+
ref(): void;
|
|
5634
|
+
unref(): void;
|
|
5635
|
+
}
|
|
5628
5636
|
}
|
|
5629
5637
|
|
|
5630
5638
|
export = internal;
|
node v8/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@types/node",
|
|
3
|
-
"version": "8.10.
|
|
3
|
+
"version": "8.10.59",
|
|
4
4
|
"description": "TypeScript definitions for Node.js",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"contributors": [
|
|
@@ -131,7 +131,7 @@
|
|
|
131
131
|
}
|
|
132
132
|
],
|
|
133
133
|
"main": "",
|
|
134
|
-
"types": "index",
|
|
134
|
+
"types": "index.d.ts",
|
|
135
135
|
"typesVersions": {
|
|
136
136
|
">=3.2.0-0": {
|
|
137
137
|
"*": [
|
|
@@ -146,6 +146,6 @@
|
|
|
146
146
|
},
|
|
147
147
|
"scripts": {},
|
|
148
148
|
"dependencies": {},
|
|
149
|
-
"typesPublisherContentHash": "
|
|
150
|
-
"typeScriptVersion": "2.
|
|
149
|
+
"typesPublisherContentHash": "be6bc3849ad26978d809520e219ed9483ee0417ccc7a26f629ff2c407d737a0d",
|
|
150
|
+
"typeScriptVersion": "2.8"
|
|
151
151
|
}
|