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