@types/node 16.18.36 → 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 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: Tue, 13 Jun 2023 02:32:51 GMT
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
 
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@types/node",
3
- "version": "16.18.36",
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": "473c951b26fa6b66f4d1c1f2cf1fe45e81567c500fb5672e56d967ec5e401532",
230
+ "typesPublisherContentHash": "d5c60b02050567c53727f8ea5b1efb6aff6c3325d86d32d8934012396233d984",
231
231
  "typeScriptVersion": "4.3"
232
232
  }
@@ -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
  */