@types/node 10.12.18 → 10.12.19
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/README.md +3 -3
- node/index.d.ts +2 -0
- node/package.json +7 -2
node/README.md
CHANGED
|
@@ -2,15 +2,15 @@
|
|
|
2
2
|
> `npm install --save @types/node`
|
|
3
3
|
|
|
4
4
|
# Summary
|
|
5
|
-
This package contains type definitions for Node.js (http://nodejs.org/).
|
|
5
|
+
This package contains type definitions for Node.js ( http://nodejs.org/ ).
|
|
6
6
|
|
|
7
7
|
# Details
|
|
8
8
|
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node
|
|
9
9
|
|
|
10
10
|
Additional Details
|
|
11
|
-
* Last updated:
|
|
11
|
+
* Last updated: Tue, 29 Jan 2019 00:37:20 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
|
|
|
15
15
|
# Credits
|
|
16
|
-
These definitions were written by Microsoft TypeScript <https://github.com/Microsoft>, DefinitelyTyped <https://github.com/DefinitelyTyped>, Alberto Schiabel <https://github.com/jkomyno>, Alexander T. <https://github.com/a-tarasyuk>, Alvis HT Tang <https://github.com/alvis>, Andrew Makarov <https://github.com/r3nya>, Bruno Scheufler <https://github.com/brunoscheufler>, Chigozirim C. <https://github.com/smac89>, Christian Vaagland Tellnes <https://github.com/tellnes>, Deividas Bakanas <https://github.com/DeividasBakanas>, Eugene Y. Q. Shen <https://github.com/eyqs>, Flarna <https://github.com/Flarna>, Hannes Magnusson <https://github.com/Hannes-Magnusson-CK>, Hoàng Văn Khải <https://github.com/KSXGitHub>, Huw <https://github.com/hoo29>, Kelvin Jin <https://github.com/kjin>, Klaus Meinhardt <https://github.com/ajafff>, Lishude <https://github.com/islishude>, Mariusz Wiktorczyk <https://github.com/mwiktorczyk>, Matthieu Sieben <https://github.com/matthieusieben>, Mohsen Azimi <https://github.com/mohsen1>, Nicolas Even <https://github.com/n-e>, Nicolas Voigt <https://github.com/octo-sniffle>, Parambir Singh <https://github.com/parambirs>, Sebastian Silbermann <https://github.com/eps1lon>, Simon Schick <https://github.com/SimonSchick>, Thomas den Hollander <https://github.com/ThomasdenH>, Wilco Bakker <https://github.com/WilcoBakker>, wwwy3y3 <https://github.com/wwwy3y3>, Zane Hannan AU <https://github.com/ZaneHannanAU>, Jeremie Rodriguez <https://github.com/jeremiergz>, Samuel Ainsworth <https://github.com/samuela>.
|
|
16
|
+
These definitions were written by Microsoft TypeScript <https://github.com/Microsoft>, DefinitelyTyped <https://github.com/DefinitelyTyped>, Alberto Schiabel <https://github.com/jkomyno>, Alexander T. <https://github.com/a-tarasyuk>, Alvis HT Tang <https://github.com/alvis>, Andrew Makarov <https://github.com/r3nya>, Bruno Scheufler <https://github.com/brunoscheufler>, Chigozirim C. <https://github.com/smac89>, Christian Vaagland Tellnes <https://github.com/tellnes>, Deividas Bakanas <https://github.com/DeividasBakanas>, Eugene Y. Q. Shen <https://github.com/eyqs>, Flarna <https://github.com/Flarna>, Hannes Magnusson <https://github.com/Hannes-Magnusson-CK>, Hoàng Văn Khải <https://github.com/KSXGitHub>, Huw <https://github.com/hoo29>, Kelvin Jin <https://github.com/kjin>, Klaus Meinhardt <https://github.com/ajafff>, Lishude <https://github.com/islishude>, Mariusz Wiktorczyk <https://github.com/mwiktorczyk>, Matthieu Sieben <https://github.com/matthieusieben>, Mohsen Azimi <https://github.com/mohsen1>, Nicolas Even <https://github.com/n-e>, Nicolas Voigt <https://github.com/octo-sniffle>, Parambir Singh <https://github.com/parambirs>, Sebastian Silbermann <https://github.com/eps1lon>, Simon Schick <https://github.com/SimonSchick>, Thomas den Hollander <https://github.com/ThomasdenH>, Wilco Bakker <https://github.com/WilcoBakker>, wwwy3y3 <https://github.com/wwwy3y3>, Zane Hannan AU <https://github.com/ZaneHannanAU>, Jeremie Rodriguez <https://github.com/jeremiergz>, Samuel Ainsworth <https://github.com/samuela>, Kyle Uehlein <https://github.com/kuehlein>.
|
node/index.d.ts
CHANGED
|
@@ -32,6 +32,7 @@
|
|
|
32
32
|
// Zane Hannan AU <https://github.com/ZaneHannanAU>
|
|
33
33
|
// Jeremie Rodriguez <https://github.com/jeremiergz>
|
|
34
34
|
// Samuel Ainsworth <https://github.com/samuela>
|
|
35
|
+
// Kyle Uehlein <https://github.com/kuehlein>
|
|
35
36
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
36
37
|
|
|
37
38
|
/** inspector module types */
|
|
@@ -2886,6 +2887,7 @@ declare module "child_process" {
|
|
|
2886
2887
|
gid?: number;
|
|
2887
2888
|
windowsHide?: boolean;
|
|
2888
2889
|
windowsVerbatimArguments?: boolean;
|
|
2890
|
+
shell?: boolean | string;
|
|
2889
2891
|
}
|
|
2890
2892
|
interface ExecFileOptionsWithStringEncoding extends ExecFileOptions {
|
|
2891
2893
|
encoding: BufferEncoding;
|
node/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@types/node",
|
|
3
|
-
"version": "10.12.
|
|
3
|
+
"version": "10.12.19",
|
|
4
4
|
"description": "TypeScript definitions for Node.js",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"contributors": [
|
|
@@ -163,6 +163,11 @@
|
|
|
163
163
|
"name": "Samuel Ainsworth",
|
|
164
164
|
"url": "https://github.com/samuela",
|
|
165
165
|
"githubUsername": "samuela"
|
|
166
|
+
},
|
|
167
|
+
{
|
|
168
|
+
"name": "Kyle Uehlein",
|
|
169
|
+
"url": "https://github.com/kuehlein",
|
|
170
|
+
"githubUsername": "kuehlein"
|
|
166
171
|
}
|
|
167
172
|
],
|
|
168
173
|
"main": "",
|
|
@@ -173,6 +178,6 @@
|
|
|
173
178
|
},
|
|
174
179
|
"scripts": {},
|
|
175
180
|
"dependencies": {},
|
|
176
|
-
"typesPublisherContentHash": "
|
|
181
|
+
"typesPublisherContentHash": "ff0277f498b203f6759686ef6e80f661eee89c50d1841f77e28a25261bd43fef",
|
|
177
182
|
"typeScriptVersion": "2.0"
|
|
178
183
|
}
|