@types/node 13.13.38 → 13.13.39
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 v13.13/README.md +1 -1
- node v13.13/package.json +2 -2
- node v13.13/url.d.ts +6 -0
node v13.13/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://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node/v13.
|
|
9
9
|
|
|
10
10
|
### Additional Details
|
|
11
|
-
* Last updated:
|
|
11
|
+
* Last updated: Mon, 04 Jan 2021 20:50:29 GMT
|
|
12
12
|
* Dependencies: none
|
|
13
13
|
* Global values: `Buffer`, `__dirname`, `__filename`, `clearImmediate`, `clearInterval`, `clearTimeout`, `console`, `exports`, `global`, `module`, `process`, `queueMicrotask`, `require`, `setImmediate`, `setInterval`, `setTimeout`
|
|
14
14
|
|
node v13.13/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@types/node",
|
|
3
|
-
"version": "13.13.
|
|
3
|
+
"version": "13.13.39",
|
|
4
4
|
"description": "TypeScript definitions for Node.js",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"contributors": [
|
|
@@ -241,6 +241,6 @@
|
|
|
241
241
|
},
|
|
242
242
|
"scripts": {},
|
|
243
243
|
"dependencies": {},
|
|
244
|
-
"typesPublisherContentHash": "
|
|
244
|
+
"typesPublisherContentHash": "157c97c0c8cf6e9afa4b150dfd82763637d000c3503595d3e1b60290ea4209ce",
|
|
245
245
|
"typeScriptVersion": "3.3"
|
|
246
246
|
}
|
node v13.13/url.d.ts
CHANGED
|
@@ -40,13 +40,19 @@ declare module "url" {
|
|
|
40
40
|
query: string | null;
|
|
41
41
|
}
|
|
42
42
|
|
|
43
|
+
/** @deprecated since v11.0.0 - Use the WHATWG URL API. */
|
|
43
44
|
function parse(urlStr: string): UrlWithStringQuery;
|
|
45
|
+
/** @deprecated since v11.0.0 - Use the WHATWG URL API. */
|
|
44
46
|
function parse(urlStr: string, parseQueryString: false | undefined, slashesDenoteHost?: boolean): UrlWithStringQuery;
|
|
47
|
+
/** @deprecated since v11.0.0 - Use the WHATWG URL API. */
|
|
45
48
|
function parse(urlStr: string, parseQueryString: true, slashesDenoteHost?: boolean): UrlWithParsedQuery;
|
|
49
|
+
/** @deprecated since v11.0.0 - Use the WHATWG URL API. */
|
|
46
50
|
function parse(urlStr: string, parseQueryString: boolean, slashesDenoteHost?: boolean): Url;
|
|
47
51
|
|
|
48
52
|
function format(URL: URL, options?: URLFormatOptions): string;
|
|
53
|
+
/** @deprecated since v11.0.0 - Use the WHATWG URL API. */
|
|
49
54
|
function format(urlObject: UrlObject | string): string;
|
|
55
|
+
/** @deprecated since v11.0.0 - Use the WHATWG URL API. */
|
|
50
56
|
function resolve(from: string, to: string): string;
|
|
51
57
|
|
|
52
58
|
function domainToASCII(domain: string): string;
|