@types/node 10.12.29 → 10.12.30
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 v10/README.md +2 -2
- node v10/index.d.ts +1 -0
- node v10/net.d.ts +1 -1
- node v10/package.json +7 -2
node v10/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/v10
|
|
9
9
|
|
|
10
10
|
Additional Details
|
|
11
|
-
* Last updated:
|
|
11
|
+
* Last updated: Wed, 06 Mar 2019 19:47:01 GMT
|
|
12
12
|
* Dependencies: none
|
|
13
13
|
* Global values: Buffer, NodeJS, 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>, Kyle Uehlein <https://github.com/kuehlein>, Jordi Oliveras Rovira <https://github.com/j-oliveras>.
|
|
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>, Jordi Oliveras Rovira <https://github.com/j-oliveras>, Thanik Bhongbhibhat <https://github.com/bhongy>.
|
node v10/index.d.ts
CHANGED
|
@@ -34,6 +34,7 @@
|
|
|
34
34
|
// Samuel Ainsworth <https://github.com/samuela>
|
|
35
35
|
// Kyle Uehlein <https://github.com/kuehlein>
|
|
36
36
|
// Jordi Oliveras Rovira <https://github.com/j-oliveras>
|
|
37
|
+
// Thanik Bhongbhibhat <https://github.com/bhongy>
|
|
37
38
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
38
39
|
|
|
39
40
|
// NOTE: These definitions support NodeJS and TypeScript 3.1.
|
node v10/net.d.ts
CHANGED
|
@@ -174,7 +174,7 @@ declare module "net" {
|
|
|
174
174
|
listen(options: ListenOptions, listeningListener?: Function): this;
|
|
175
175
|
listen(handle: any, backlog?: number, listeningListener?: Function): this;
|
|
176
176
|
listen(handle: any, listeningListener?: Function): this;
|
|
177
|
-
close(callback?:
|
|
177
|
+
close(callback?: (err?: Error) => void): this;
|
|
178
178
|
address(): AddressInfo | string;
|
|
179
179
|
getConnections(cb: (error: Error | null, count: number) => void): void;
|
|
180
180
|
ref(): this;
|
node v10/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@types/node",
|
|
3
|
-
"version": "10.12.
|
|
3
|
+
"version": "10.12.30",
|
|
4
4
|
"description": "TypeScript definitions for Node.js",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"contributors": [
|
|
@@ -173,6 +173,11 @@
|
|
|
173
173
|
"name": "Jordi Oliveras Rovira",
|
|
174
174
|
"url": "https://github.com/j-oliveras",
|
|
175
175
|
"githubUsername": "j-oliveras"
|
|
176
|
+
},
|
|
177
|
+
{
|
|
178
|
+
"name": "Thanik Bhongbhibhat",
|
|
179
|
+
"url": "https://github.com/bhongy",
|
|
180
|
+
"githubUsername": "bhongy"
|
|
176
181
|
}
|
|
177
182
|
],
|
|
178
183
|
"main": "",
|
|
@@ -191,6 +196,6 @@
|
|
|
191
196
|
},
|
|
192
197
|
"scripts": {},
|
|
193
198
|
"dependencies": {},
|
|
194
|
-
"typesPublisherContentHash": "
|
|
199
|
+
"typesPublisherContentHash": "4570538e0b32a026b58f68c5324441a36a4da0ba11b9a379b09ce4452dd0dc2c",
|
|
195
200
|
"typeScriptVersion": "2.0"
|
|
196
201
|
}
|