@types/node 8.10.19 → 8.10.20
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 +2 -2
- node v8/index.d.ts +7 -0
- node v8/package.json +7 -2
node v8/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/v8
|
|
9
9
|
|
|
10
10
|
Additional Details
|
|
11
|
-
* Last updated:
|
|
11
|
+
* Last updated: Wed, 13 Jun 2018 19:16:57 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 <http://typescriptlang.org>, DefinitelyTyped <https://github.com/DefinitelyTyped/DefinitelyTyped>, Parambir Singh <https://github.com/parambirs>, Christian Vaagland Tellnes <https://github.com/tellnes>, Wilco Bakker <https://github.com/WilcoBakker>, Nicolas Voigt <https://github.com/octo-sniffle>, Chigozirim C. <https://github.com/smac89>, Flarna <https://github.com/Flarna>, Mariusz Wiktorczyk <https://github.com/mwiktorczyk>, wwwy3y3 <https://github.com/wwwy3y3>, Deividas Bakanas <https://github.com/DeividasBakanas>, Kelvin Jin <https://github.com/kjin>, Alvis HT Tang <https://github.com/alvis>, Sebastian Silbermann <https://github.com/eps1lon>, Hannes Magnusson <https://github.com/Hannes-Magnusson-CK>, Alberto Schiabel <https://github.com/jkomyno>, Huw <https://github.com/hoo29>, Nicolas Even <https://github.com/n-e>, Bruno Scheufler <https://github.com/brunoscheufler>, Hoàng Văn Khải <https://github.com/KSXGitHub>, Lishude <https://github.com/islishude>.
|
|
16
|
+
These definitions were written by Microsoft TypeScript <http://typescriptlang.org>, DefinitelyTyped <https://github.com/DefinitelyTyped/DefinitelyTyped>, Parambir Singh <https://github.com/parambirs>, Christian Vaagland Tellnes <https://github.com/tellnes>, Wilco Bakker <https://github.com/WilcoBakker>, Nicolas Voigt <https://github.com/octo-sniffle>, Chigozirim C. <https://github.com/smac89>, Flarna <https://github.com/Flarna>, Mariusz Wiktorczyk <https://github.com/mwiktorczyk>, wwwy3y3 <https://github.com/wwwy3y3>, Deividas Bakanas <https://github.com/DeividasBakanas>, Kelvin Jin <https://github.com/kjin>, Alvis HT Tang <https://github.com/alvis>, Sebastian Silbermann <https://github.com/eps1lon>, Hannes Magnusson <https://github.com/Hannes-Magnusson-CK>, Alberto Schiabel <https://github.com/jkomyno>, Huw <https://github.com/hoo29>, Nicolas Even <https://github.com/n-e>, Bruno Scheufler <https://github.com/brunoscheufler>, Hoàng Văn Khải <https://github.com/KSXGitHub>, Lishude <https://github.com/islishude>, Andrew Makarov <https://github.com/r3nya>.
|
node v8/index.d.ts
CHANGED
|
@@ -21,6 +21,7 @@
|
|
|
21
21
|
// Bruno Scheufler <https://github.com/brunoscheufler>
|
|
22
22
|
// Hoàng Văn Khải <https://github.com/KSXGitHub>
|
|
23
23
|
// Lishude <https://github.com/islishude>
|
|
24
|
+
// Andrew Makarov <https://github.com/r3nya>
|
|
24
25
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
25
26
|
// TypeScript Version: 2.1
|
|
26
27
|
|
|
@@ -2444,6 +2445,12 @@ declare module "dns" {
|
|
|
2444
2445
|
export function __promisify__(hostname: string, options?: LookupOptions | number): Promise<{ address: string | LookupAddress[], family?: number }>;
|
|
2445
2446
|
}
|
|
2446
2447
|
|
|
2448
|
+
export function lookupService(address: string, port: number, callback: (err: NodeJS.ErrnoException, hostname: string, service: string) => void): void;
|
|
2449
|
+
|
|
2450
|
+
export namespace lookupService {
|
|
2451
|
+
export function __promisify__(address: string, port: number): Promise<{ hostname: string, service: string }>;
|
|
2452
|
+
}
|
|
2453
|
+
|
|
2447
2454
|
export interface ResolveOptions {
|
|
2448
2455
|
ttl: boolean;
|
|
2449
2456
|
}
|
node v8/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@types/node",
|
|
3
|
-
"version": "8.10.
|
|
3
|
+
"version": "8.10.20",
|
|
4
4
|
"description": "TypeScript definitions for Node.js",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"contributors": [
|
|
@@ -106,6 +106,11 @@
|
|
|
106
106
|
"name": "Lishude",
|
|
107
107
|
"url": "https://github.com/islishude",
|
|
108
108
|
"githubUsername": "islishude"
|
|
109
|
+
},
|
|
110
|
+
{
|
|
111
|
+
"name": "Andrew Makarov",
|
|
112
|
+
"url": "https://github.com/r3nya",
|
|
113
|
+
"githubUsername": "r3nya"
|
|
109
114
|
}
|
|
110
115
|
],
|
|
111
116
|
"main": "",
|
|
@@ -115,6 +120,6 @@
|
|
|
115
120
|
},
|
|
116
121
|
"scripts": {},
|
|
117
122
|
"dependencies": {},
|
|
118
|
-
"typesPublisherContentHash": "
|
|
123
|
+
"typesPublisherContentHash": "6a13031b27afb46422a0365300a630dfc5d9e91af591115fa6a7dd6ddafd497e",
|
|
119
124
|
"typeScriptVersion": "2.1"
|
|
120
125
|
}
|