@types/node 14.18.50 → 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 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: Sat, 10 Jun 2023 19:32:43 GMT
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
 
@@ -15,6 +15,8 @@ declare module 'cluster' {
15
15
  gid?: number | undefined;
16
16
  inspectPort?: number | (() => number) | undefined;
17
17
  serialization?: SerializationType | undefined;
18
+ cwd?: string | undefined;
19
+ windowsHide?: boolean | undefined;
18
20
  }
19
21
 
20
22
  interface Address {
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@types/node",
3
- "version": "14.18.50",
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": "cf734852afa46af6833f8a06ccd5b00bd66d8f70ead26967cc5e99f8b1a1a4b1",
230
+ "typesPublisherContentHash": "2fd47187bc43b5eb81912abf475ce6b003c9edaccccf59307ab1b3c316a82a85",
231
231
  "typeScriptVersion": "4.3"
232
232
  }
@@ -15,6 +15,8 @@ declare module 'cluster' {
15
15
  gid?: number | undefined;
16
16
  inspectPort?: number | (() => number) | undefined;
17
17
  serialization?: SerializationType | undefined;
18
+ cwd?: string | undefined;
19
+ windowsHide?: boolean | undefined;
18
20
  }
19
21
 
20
22
  interface Address {
@@ -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]>;