@types/node 10.12.0 → 10.12.1
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 +2 -2
- node/index.d.ts +2 -1
- node/package.json +7 -2
node/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://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node
|
|
9
9
|
|
|
10
10
|
Additional Details
|
|
11
|
-
* Last updated: Mon,
|
|
11
|
+
* Last updated: Mon, 29 Oct 2018 17:45:08 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>.
|
|
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>.
|
node/index.d.ts
CHANGED
|
@@ -30,6 +30,7 @@
|
|
|
30
30
|
// Wilco Bakker <https://github.com/WilcoBakker>
|
|
31
31
|
// wwwy3y3 <https://github.com/wwwy3y3>
|
|
32
32
|
// Zane Hannan AU <https://github.com/ZaneHannanAU>
|
|
33
|
+
// Jeremie Rodriguez <https://github.com/jeremiergz>
|
|
33
34
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
34
35
|
|
|
35
36
|
/** inspector module types */
|
|
@@ -6394,7 +6395,7 @@ declare module "crypto" {
|
|
|
6394
6395
|
|
|
6395
6396
|
interface BasePrivateKeyEncodingOptions<T extends KeyFormat> {
|
|
6396
6397
|
format: T;
|
|
6397
|
-
|
|
6398
|
+
cipher: string;
|
|
6398
6399
|
passphrase: string;
|
|
6399
6400
|
}
|
|
6400
6401
|
|
node/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@types/node",
|
|
3
|
-
"version": "10.12.
|
|
3
|
+
"version": "10.12.1",
|
|
4
4
|
"description": "TypeScript definitions for Node.js",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"contributors": [
|
|
@@ -153,6 +153,11 @@
|
|
|
153
153
|
"name": "Zane Hannan AU",
|
|
154
154
|
"url": "https://github.com/ZaneHannanAU",
|
|
155
155
|
"githubUsername": "ZaneHannanAU"
|
|
156
|
+
},
|
|
157
|
+
{
|
|
158
|
+
"name": "Jeremie Rodriguez",
|
|
159
|
+
"url": "https://github.com/jeremiergz",
|
|
160
|
+
"githubUsername": "jeremiergz"
|
|
156
161
|
}
|
|
157
162
|
],
|
|
158
163
|
"main": "",
|
|
@@ -163,6 +168,6 @@
|
|
|
163
168
|
},
|
|
164
169
|
"scripts": {},
|
|
165
170
|
"dependencies": {},
|
|
166
|
-
"typesPublisherContentHash": "
|
|
171
|
+
"typesPublisherContentHash": "f104ca149a69ee16995ff2743e4dee753e9b01f745d576961305e804def6b9d3",
|
|
167
172
|
"typeScriptVersion": "2.0"
|
|
168
173
|
}
|