@types/node 14.17.13 → 14.17.17

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.17/README.md CHANGED
@@ -2,13 +2,13 @@
2
2
  > `npm install --save @types/node`
3
3
 
4
4
  # Summary
5
- This package contains type definitions for Node.js (http://nodejs.org/).
5
+ This package contains type definitions for Node.js (https://nodejs.org/).
6
6
 
7
7
  # Details
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: Tue, 31 Aug 2021 17:01:28 GMT
11
+ * Last updated: Thu, 16 Sep 2021 21:31:23 GMT
12
12
  * Dependencies: none
13
13
  * Global values: `Buffer`, `__dirname`, `__filename`, `clearImmediate`, `clearInterval`, `clearTimeout`, `console`, `exports`, `global`, `module`, `process`, `queueMicrotask`, `require`, `setImmediate`, `setInterval`, `setTimeout`
14
14
 
@@ -437,7 +437,6 @@ declare namespace NodeJS {
437
437
  code?: string | undefined;
438
438
  path?: string | undefined;
439
439
  syscall?: string | undefined;
440
- stack?: string | undefined;
441
440
  }
442
441
 
443
442
  interface ReadableStream extends EventEmitter {
node v14.17/index.d.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  // Type definitions for non-npm package Node.js 14.17
2
- // Project: http://nodejs.org/
2
+ // Project: https://nodejs.org/
3
3
  // Definitions by: Microsoft TypeScript <https://github.com/Microsoft>
4
4
  // DefinitelyTyped <https://github.com/DefinitelyTyped>
5
5
  // Alberto Schiabel <https://github.com/jkomyno>
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@types/node",
3
- "version": "14.17.13",
3
+ "version": "14.17.17",
4
4
  "description": "TypeScript definitions for Node.js",
5
5
  "homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node",
6
6
  "license": "MIT",
@@ -225,6 +225,6 @@
225
225
  },
226
226
  "scripts": {},
227
227
  "dependencies": {},
228
- "typesPublisherContentHash": "4eb37aba3aa3ad2518fc4da4734dc4eaad0b638435917dbd8a9c8d73e7662cb4",
228
+ "typesPublisherContentHash": "ba115d2cec3bc3d947599b3cd88c60a52e9fe2c4829fdb92308ee6fa74362547",
229
229
  "typeScriptVersion": "3.7"
230
230
  }
node v14.17/stream.d.ts CHANGED
@@ -251,6 +251,7 @@ declare module 'stream' {
251
251
  readonly writableLength: number;
252
252
  readonly writableObjectMode: boolean;
253
253
  readonly writableCorked: number;
254
+ allowHalfOpen: boolean;
254
255
  constructor(opts?: DuplexOptions);
255
256
  _write(chunk: any, encoding: BufferEncoding, callback: (error?: Error | null) => void): void;
256
257
  _writev?(chunks: Array<{ chunk: any, encoding: BufferEncoding }>, callback: (error?: Error | null) => void): void;
node v14.17/url.d.ts CHANGED
@@ -98,7 +98,7 @@ declare module 'url' {
98
98
  }
99
99
 
100
100
  class URLSearchParams implements Iterable<[string, string]> {
101
- constructor(init?: URLSearchParams | string | NodeJS.Dict<string | ReadonlyArray<string>> | Iterable<[string, string]> | ReadonlyArray<[string, string]>);
101
+ constructor(init?: URLSearchParams | string | Record<string, string | ReadonlyArray<string>> | Iterable<[string, string]> | ReadonlyArray<[string, string]>);
102
102
  append(name: string, value: string): void;
103
103
  delete(name: string): void;
104
104
  entries(): IterableIterator<[string, string]>;