@types/node 9.6.0 → 9.6.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 +1 -1
- node/index.d.ts +3 -0
- node/package.json +2 -2
node/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://www.github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node
|
|
9
9
|
|
|
10
10
|
Additional Details
|
|
11
|
-
* Last updated:
|
|
11
|
+
* Last updated: Wed, 28 Mar 2018 20:38:28 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/index.d.ts
CHANGED
|
@@ -2361,6 +2361,9 @@ declare module "url" {
|
|
|
2361
2361
|
export function format(urlObject: UrlObject | string): string;
|
|
2362
2362
|
export function resolve(from: string, to: string): string;
|
|
2363
2363
|
|
|
2364
|
+
export function domainToASCII(domain: string): string;
|
|
2365
|
+
export function domainToUnicode(domain: string): string;
|
|
2366
|
+
|
|
2364
2367
|
export interface URLFormatOptions {
|
|
2365
2368
|
auth?: boolean;
|
|
2366
2369
|
fragment?: boolean;
|
node/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@types/node",
|
|
3
|
-
"version": "9.6.
|
|
3
|
+
"version": "9.6.1",
|
|
4
4
|
"description": "TypeScript definitions for Node.js",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"contributors": [
|
|
@@ -110,6 +110,6 @@
|
|
|
110
110
|
},
|
|
111
111
|
"scripts": {},
|
|
112
112
|
"dependencies": {},
|
|
113
|
-
"typesPublisherContentHash": "
|
|
113
|
+
"typesPublisherContentHash": "1718eacebf8528bb3cebadd70721467663f7619d7a8764c47667728788e322f0",
|
|
114
114
|
"typeScriptVersion": "2.0"
|
|
115
115
|
}
|