@types/node 16.18.35 → 16.18.37
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 v16.18/README.md +1 -1
- node v16.18/cluster.d.ts +2 -0
- node v16.18/package.json +2 -2
- node v16.18/ts4.8/cluster.d.ts +2 -0
- node v16.18/ts4.8/url.d.ts +1 -0
- node v16.18/url.d.ts +1 -0
node v16.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/v16.
|
|
9
9
|
|
|
10
10
|
### Additional Details
|
|
11
|
-
* Last updated:
|
|
11
|
+
* Last updated: Mon, 26 Jun 2023 18:32:41 GMT
|
|
12
12
|
* Dependencies: none
|
|
13
13
|
* Global values: `AbortController`, `AbortSignal`, `__dirname`, `__filename`, `console`, `exports`, `gc`, `global`, `module`, `process`, `require`
|
|
14
14
|
|
node v16.18/cluster.d.ts
CHANGED
|
@@ -66,6 +66,8 @@ declare module 'cluster' {
|
|
|
66
66
|
gid?: number | undefined;
|
|
67
67
|
inspectPort?: number | (() => number) | undefined;
|
|
68
68
|
serialization?: SerializationType | undefined;
|
|
69
|
+
cwd?: string | undefined;
|
|
70
|
+
windowsHide?: boolean | undefined;
|
|
69
71
|
}
|
|
70
72
|
export interface Address {
|
|
71
73
|
address: string;
|
node v16.18/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@types/node",
|
|
3
|
-
"version": "16.18.
|
|
3
|
+
"version": "16.18.37",
|
|
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": "d5c60b02050567c53727f8ea5b1efb6aff6c3325d86d32d8934012396233d984",
|
|
231
231
|
"typeScriptVersion": "4.3"
|
|
232
232
|
}
|
node v16.18/ts4.8/cluster.d.ts
CHANGED
|
@@ -66,6 +66,8 @@ declare module 'cluster' {
|
|
|
66
66
|
gid?: number | undefined;
|
|
67
67
|
inspectPort?: number | (() => number) | undefined;
|
|
68
68
|
serialization?: SerializationType | undefined;
|
|
69
|
+
cwd?: string | undefined;
|
|
70
|
+
windowsHide?: boolean | undefined;
|
|
69
71
|
}
|
|
70
72
|
export interface Address {
|
|
71
73
|
address: string;
|
node v16.18/ts4.8/url.d.ts
CHANGED
|
@@ -712,6 +712,7 @@ declare module 'url' {
|
|
|
712
712
|
*/
|
|
713
713
|
class URLSearchParams implements Iterable<[string, string]> {
|
|
714
714
|
constructor(init?: URLSearchParams | string | Record<string, string | ReadonlyArray<string>> | Iterable<[string, string]> | ReadonlyArray<[string, string]>);
|
|
715
|
+
readonly size: number;
|
|
715
716
|
/**
|
|
716
717
|
* Append a new name-value pair to the query string.
|
|
717
718
|
*/
|
node v16.18/url.d.ts
CHANGED
|
@@ -712,6 +712,7 @@ declare module 'url' {
|
|
|
712
712
|
*/
|
|
713
713
|
class URLSearchParams implements Iterable<[string, string]> {
|
|
714
714
|
constructor(init?: URLSearchParams | string | Record<string, string | ReadonlyArray<string>> | Iterable<[string, string]> | ReadonlyArray<[string, string]>);
|
|
715
|
+
readonly size: number;
|
|
715
716
|
/**
|
|
716
717
|
* Append a new name-value pair to the query string.
|
|
717
718
|
*/
|