@types/node 14.18.51 → 14.18.52
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 v14.18/README.md +1 -1
- node v14.18/package.json +2 -2
- node v14.18/ts4.8/url.d.ts +1 -0
- node v14.18/url.d.ts +1 -0
node v14.18/README.md
CHANGED
|
@@ -8,7 +8,7 @@ This package contains type definitions for Node.js (https://nodejs.org/).
|
|
|
8
8
|
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node/v14.
|
|
9
9
|
|
|
10
10
|
### Additional Details
|
|
11
|
-
* Last updated:
|
|
11
|
+
* Last updated: Mon, 26 Jun 2023 18:32:42 GMT
|
|
12
12
|
* Dependencies: none
|
|
13
13
|
* Global values: `AbortController`, `AbortSignal`, `Buffer`, `__dirname`, `__filename`, `clearImmediate`, `clearInterval`, `clearTimeout`, `console`, `exports`, `global`, `module`, `process`, `queueMicrotask`, `require`, `setImmediate`, `setInterval`, `setTimeout`
|
|
14
14
|
|
node v14.18/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@types/node",
|
|
3
|
-
"version": "14.18.
|
|
3
|
+
"version": "14.18.52",
|
|
4
4
|
"description": "TypeScript definitions for Node.js",
|
|
5
5
|
"homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node",
|
|
6
6
|
"license": "MIT",
|
|
@@ -227,6 +227,6 @@
|
|
|
227
227
|
},
|
|
228
228
|
"scripts": {},
|
|
229
229
|
"dependencies": {},
|
|
230
|
-
"typesPublisherContentHash": "
|
|
230
|
+
"typesPublisherContentHash": "2fd47187bc43b5eb81912abf475ce6b003c9edaccccf59307ab1b3c316a82a85",
|
|
231
231
|
"typeScriptVersion": "4.3"
|
|
232
232
|
}
|
node v14.18/ts4.8/url.d.ts
CHANGED
|
@@ -127,6 +127,7 @@ declare module 'url' {
|
|
|
127
127
|
|
|
128
128
|
class URLSearchParams implements Iterable<[string, string]> {
|
|
129
129
|
constructor(init?: URLSearchParams | string | Record<string, string | ReadonlyArray<string>> | Iterable<[string, string]> | ReadonlyArray<[string, string]>);
|
|
130
|
+
readonly size: number;
|
|
130
131
|
append(name: string, value: string): void;
|
|
131
132
|
delete(name: string): void;
|
|
132
133
|
entries(): IterableIterator<[string, string]>;
|
node v14.18/url.d.ts
CHANGED
|
@@ -127,6 +127,7 @@ declare module 'url' {
|
|
|
127
127
|
|
|
128
128
|
class URLSearchParams implements Iterable<[string, string]> {
|
|
129
129
|
constructor(init?: URLSearchParams | string | Record<string, string | ReadonlyArray<string>> | Iterable<[string, string]> | ReadonlyArray<[string, string]>);
|
|
130
|
+
readonly size: number;
|
|
130
131
|
append(name: string, value: string): void;
|
|
131
132
|
delete(name: string): void;
|
|
132
133
|
entries(): IterableIterator<[string, string]>;
|