@types/node 12.20.9 → 12.20.13

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 v12.20/README.md CHANGED
@@ -8,9 +8,9 @@ This package contains type definitions for Node.js (http://nodejs.org/).
8
8
  Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node/v12.
9
9
 
10
10
  ### Additional Details
11
- * Last updated: Thu, 15 Apr 2021 17:31:25 GMT
11
+ * Last updated: Wed, 12 May 2021 19:31:30 GMT
12
12
  * Dependencies: none
13
13
  * Global values: `Buffer`, `NodeJS`, `__dirname`, `__filename`, `clearImmediate`, `clearInterval`, `clearTimeout`, `console`, `exports`, `global`, `module`, `process`, `queueMicrotask`, `require`, `setImmediate`, `setInterval`, `setTimeout`
14
14
 
15
15
  # Credits
16
- These definitions were written by [Microsoft TypeScript](https://github.com/Microsoft), [DefinitelyTyped](https://github.com/DefinitelyTyped), [Alberto Schiabel](https://github.com/jkomyno), [Alvis HT Tang](https://github.com/alvis), [Andrew Makarov](https://github.com/r3nya), [Benjamin Toueg](https://github.com/btoueg), [Bruno Scheufler](https://github.com/brunoscheufler), [Chigozirim C.](https://github.com/smac89), [David Junger](https://github.com/touffy), [Deividas Bakanas](https://github.com/DeividasBakanas), [Eugene Y. Q. Shen](https://github.com/eyqs), [Hannes Magnusson](https://github.com/Hannes-Magnusson-CK), [Hoàng Văn Khải](https://github.com/KSXGitHub), [Huw](https://github.com/hoo29), [Kelvin Jin](https://github.com/kjin), [Klaus Meinhardt](https://github.com/ajafff), [Lishude](https://github.com/islishude), [Mariusz Wiktorczyk](https://github.com/mwiktorczyk), [Mohsen Azimi](https://github.com/mohsen1), [Nicolas Even](https://github.com/n-e), [Nikita Galkin](https://github.com/galkin), [Parambir Singh](https://github.com/parambirs), [Sebastian Silbermann](https://github.com/eps1lon), [Simon Schick](https://github.com/SimonSchick), [Thomas den Hollander](https://github.com/ThomasdenH), [Wilco Bakker](https://github.com/WilcoBakker), [wwwy3y3](https://github.com/wwwy3y3), [Zane Hannan AU](https://github.com/ZaneHannanAU), [Samuel Ainsworth](https://github.com/samuela), [Kyle Uehlein](https://github.com/kuehlein), [Thanik Bhongbhibhat](https://github.com/bhongy), [Marcin Kopacz](https://github.com/chyzwar), [Trivikram Kamat](https://github.com/trivikr), [Minh Son Nguyen](https://github.com/nguymin4), [Junxiao Shi](https://github.com/yoursunny), [Ilia Baryshnikov](https://github.com/qwelias), [ExE Boss](https://github.com/ExE-Boss), and [Jason Kwok](https://github.com/JasonHK).
16
+ These definitions were written by [Microsoft TypeScript](https://github.com/Microsoft), [DefinitelyTyped](https://github.com/DefinitelyTyped), [Alberto Schiabel](https://github.com/jkomyno), [Alvis HT Tang](https://github.com/alvis), [Andrew Makarov](https://github.com/r3nya), [Benjamin Toueg](https://github.com/btoueg), [Chigozirim C.](https://github.com/smac89), [David Junger](https://github.com/touffy), [Deividas Bakanas](https://github.com/DeividasBakanas), [Eugene Y. Q. Shen](https://github.com/eyqs), [Hannes Magnusson](https://github.com/Hannes-Magnusson-CK), [Hoàng Văn Khải](https://github.com/KSXGitHub), [Huw](https://github.com/hoo29), [Kelvin Jin](https://github.com/kjin), [Klaus Meinhardt](https://github.com/ajafff), [Lishude](https://github.com/islishude), [Mariusz Wiktorczyk](https://github.com/mwiktorczyk), [Mohsen Azimi](https://github.com/mohsen1), [Nicolas Even](https://github.com/n-e), [Nikita Galkin](https://github.com/galkin), [Parambir Singh](https://github.com/parambirs), [Sebastian Silbermann](https://github.com/eps1lon), [Simon Schick](https://github.com/SimonSchick), [Thomas den Hollander](https://github.com/ThomasdenH), [Wilco Bakker](https://github.com/WilcoBakker), [wwwy3y3](https://github.com/wwwy3y3), [Zane Hannan AU](https://github.com/ZaneHannanAU), [Samuel Ainsworth](https://github.com/samuela), [Kyle Uehlein](https://github.com/kuehlein), [Thanik Bhongbhibhat](https://github.com/bhongy), [Marcin Kopacz](https://github.com/chyzwar), [Trivikram Kamat](https://github.com/trivikr), [Minh Son Nguyen](https://github.com/nguymin4), [Junxiao Shi](https://github.com/yoursunny), [Ilia Baryshnikov](https://github.com/qwelias), [ExE Boss](https://github.com/ExE-Boss), and [Jason Kwok](https://github.com/JasonHK).
node v12.20/assert.d.ts CHANGED
@@ -1,8 +1,3 @@
1
- declare module 'node:assert' {
2
- import assert = require('assert');
3
- export = assert;
4
- }
5
-
6
1
  declare module 'assert' {
7
2
  function assert(value: any, message?: string | Error): asserts value;
8
3
  namespace assert {
@@ -1,10 +1,3 @@
1
- /**
2
- * Async Hooks module: https://nodejs.org/api/async_hooks.html
3
- */
4
- declare module 'node:async_hooks' {
5
- export * from 'async_hooks';
6
- }
7
-
8
1
  /**
9
2
  * Async Hooks module: https://nodejs.org/api/async_hooks.html
10
3
  */
@@ -92,7 +85,7 @@ declare module 'async_hooks' {
92
85
  interface AsyncResourceOptions {
93
86
  /**
94
87
  * The ID of the execution context that created this async event.
95
- * Default: `executionAsyncId()`
88
+ * @default executionAsyncId()
96
89
  */
97
90
  triggerAsyncId?: number;
98
91
 
@@ -101,7 +94,7 @@ declare module 'async_hooks' {
101
94
  * This usually does not need to be set (even if `emitDestroy` is called
102
95
  * manually), unless the resource's `asyncId` is retrieved and the
103
96
  * sensitive API's `emitDestroy` is called with it.
104
- * Default: `false`
97
+ * @default false
105
98
  */
106
99
  requireManualDestroy?: boolean;
107
100
  }
node v12.20/buffer.d.ts CHANGED
@@ -1,7 +1,3 @@
1
- declare module 'node:buffer' {
2
- export * from 'buffer';
3
- }
4
-
5
1
  declare module 'buffer' {
6
2
  export const INSPECT_MAX_BYTES: number;
7
3
  export const kMaxLength: number;
@@ -1,11 +1,7 @@
1
- declare module 'node:child_process' {
2
- export * from 'child_process';
3
- }
4
-
5
1
  declare module 'child_process' {
6
- import * as events from 'node:events';
7
- import * as net from 'node:net';
8
- import { Writable, Readable, Stream, Pipe } from 'node:stream';
2
+ import * as events from 'events';
3
+ import * as net from 'net';
4
+ import { Writable, Readable, Stream, Pipe } from 'stream';
9
5
 
10
6
  interface ChildProcess extends events.EventEmitter {
11
7
  stdin: Writable | null;
@@ -1,11 +1,7 @@
1
- declare module 'node:cluster' {
2
- export * from 'cluster';
3
- }
4
-
5
1
  declare module 'cluster' {
6
- import * as child from 'node:child_process';
7
- import EventEmitter = require('node:events');
8
- import * as net from 'node:net';
2
+ import * as child from 'child_process';
3
+ import EventEmitter = require('events');
4
+ import * as net from 'net';
9
5
 
10
6
  // interfaces
11
7
  interface ClusterSettings {
@@ -1,7 +1,3 @@
1
- declare module 'node:console' {
2
- export = console;
3
- }
4
-
5
1
  declare module 'console' {
6
2
  export = console;
7
3
  }
@@ -1,8 +1,3 @@
1
- /** @deprecated since v6.3.0 - use constants property exposed by the relevant module instead. */
2
- declare module 'node:constants' {
3
- export * from 'constants';
4
- }
5
-
6
1
  /** @deprecated since v6.3.0 - use constants property exposed by the relevant module instead. */
7
2
  declare module 'constants' {
8
3
  /** @deprecated since v6.3.0 - use `os.constants.errno.E2BIG` instead. */
node v12.20/crypto.d.ts CHANGED
@@ -1,9 +1,5 @@
1
1
  declare module 'crypto' {
2
- export * from 'node:crypto';
3
- }
4
-
5
- declare module 'node:crypto' {
6
- import * as stream from 'node:stream';
2
+ import * as stream from 'stream';
7
3
 
8
4
  interface Certificate {
9
5
  exportChallenge(spkac: BinaryLike): Buffer;
node v12.20/dgram.d.ts CHANGED
@@ -1,11 +1,7 @@
1
1
  declare module 'dgram' {
2
- export * from 'node:dgram';
3
- }
4
-
5
- declare module 'node:dgram' {
6
- import { AddressInfo } from 'node:net';
7
- import * as dns from 'node:dns';
8
- import EventEmitter = require('node:events');
2
+ import { AddressInfo } from 'net';
3
+ import * as dns from 'dns';
4
+ import EventEmitter = require('events');
9
5
 
10
6
  interface RemoteInfo {
11
7
  address: string;
node v12.20/dns.d.ts CHANGED
@@ -1,7 +1,3 @@
1
- declare module 'node:dns' {
2
- export * from 'dns';
3
- }
4
-
5
1
  declare module 'dns' {
6
2
  // Supported getaddrinfo flags.
7
3
  const ADDRCONFIG: number;
node v12.20/domain.d.ts CHANGED
@@ -1,9 +1,5 @@
1
- declare module 'node:domain' {
2
- export * from 'domain';
3
- }
4
-
5
1
  declare module 'domain' {
6
- import EventEmitter = require('node:events');
2
+ import EventEmitter = require('events');
7
3
 
8
4
  class Domain extends EventEmitter implements NodeJS.Domain {
9
5
  run<T>(fn: (...args: any[]) => T, ...args: any[]): T;
node v12.20/events.d.ts CHANGED
@@ -1,8 +1,3 @@
1
- declare module 'node:events' {
2
- import EventEmitter = require('events');
3
- export = EventEmitter;
4
- }
5
-
6
1
  declare module 'events' {
7
2
  interface NodeEventTarget {
8
3
  once(event: string | symbol, listener: (...args: any[]) => void): this;
node v12.20/fs.d.ts CHANGED
@@ -1,11 +1,7 @@
1
- declare module 'node:fs' {
2
- export * from 'fs';
3
- }
4
-
5
1
  declare module 'fs' {
6
- import * as stream from 'node:stream';
7
- import EventEmitter = require('node:events');
8
- import { URL } from 'node:url';
2
+ import * as stream from 'stream';
3
+ import EventEmitter = require('events');
4
+ import { URL } from 'url';
9
5
 
10
6
  /**
11
7
  * Valid types for path values in "fs".
node v12.20/http.d.ts CHANGED
@@ -1,11 +1,7 @@
1
- declare module 'node:http' {
2
- export * from 'http';
3
- }
4
-
5
1
  declare module 'http' {
6
- import * as stream from 'node:stream';
7
- import { URL } from 'node:url';
8
- import { Socket, Server as NetServer } from 'node:net';
2
+ import * as stream from 'stream';
3
+ import { URL } from 'url';
4
+ import { Socket, Server as NetServer } from 'net';
9
5
 
10
6
  // incoming headers will never contain number
11
7
  interface IncomingHttpHeaders {
@@ -336,6 +332,10 @@ declare module 'http' {
336
332
  * Socket timeout in milliseconds. This will set the timeout after the socket is connected.
337
333
  */
338
334
  timeout?: number;
335
+ /**
336
+ * Scheduling strategy to apply when picking the next free socket to use. Default: 'fifo'.
337
+ */
338
+ scheduling?: 'fifo' | 'lifo';
339
339
  }
340
340
 
341
341
  class Agent {
node v12.20/http2.d.ts CHANGED
@@ -1,22 +1,18 @@
1
- declare module 'node:http2' {
2
- export * from 'http2';
3
- }
4
-
5
1
  declare module 'http2' {
6
- import EventEmitter = require('node:events');
7
- import * as fs from 'node:fs';
8
- import * as net from 'node:net';
9
- import * as stream from 'node:stream';
10
- import * as tls from 'node:tls';
11
- import * as url from 'node:url';
2
+ import EventEmitter = require('events');
3
+ import * as fs from 'fs';
4
+ import * as net from 'net';
5
+ import * as stream from 'stream';
6
+ import * as tls from 'tls';
7
+ import * as url from 'url';
12
8
 
13
9
  import {
14
10
  IncomingHttpHeaders as Http1IncomingHttpHeaders,
15
11
  OutgoingHttpHeaders,
16
12
  IncomingMessage,
17
13
  ServerResponse,
18
- } from 'node:http';
19
- export { OutgoingHttpHeaders } from 'node:http';
14
+ } from 'http';
15
+ export { OutgoingHttpHeaders } from 'http';
20
16
 
21
17
  export interface IncomingHttpStatusHeader {
22
18
  ":status"?: number;
node v12.20/https.d.ts CHANGED
@@ -1,11 +1,7 @@
1
- declare module 'node:https' {
2
- export * from 'https';
3
- }
4
-
5
1
  declare module 'https' {
6
- import * as tls from 'node:tls';
7
- import * as http from 'node:http';
8
- import { URL } from 'node:url';
2
+ import * as tls from 'tls';
3
+ import * as http from 'http';
4
+ import { URL } from 'url';
9
5
 
10
6
  type ServerOptions = tls.SecureContextOptions & tls.TlsOptions & http.ServerOptions;
11
7
 
node v12.20/index.d.ts CHANGED
@@ -6,7 +6,6 @@
6
6
  // Alvis HT Tang <https://github.com/alvis>
7
7
  // Andrew Makarov <https://github.com/r3nya>
8
8
  // Benjamin Toueg <https://github.com/btoueg>
9
- // Bruno Scheufler <https://github.com/brunoscheufler>
10
9
  // Chigozirim C. <https://github.com/smac89>
11
10
  // David Junger <https://github.com/touffy>
12
11
  // Deividas Bakanas <https://github.com/DeividasBakanas>
@@ -7,18 +7,11 @@
7
7
 
8
8
  // tslint:disable:max-line-length
9
9
 
10
- /**
11
- * The inspector module provides an API for interacting with the V8 inspector.
12
- */
13
- declare module 'node:inspector' {
14
- export * from 'inspector';
15
- }
16
-
17
10
  /**
18
11
  * The inspector module provides an API for interacting with the V8 inspector.
19
12
  */
20
13
  declare module 'inspector' {
21
- import EventEmitter = require('node:events');
14
+ import EventEmitter = require('events');
22
15
 
23
16
  interface InspectorNotification<T> {
24
17
  method: string;
node v12.20/module.d.ts CHANGED
@@ -1,7 +1,3 @@
1
- declare module 'node:module' {
2
- export = NodeJS.Module;
3
- }
4
-
5
1
  declare module 'module' {
6
2
  export = NodeJS.Module;
7
3
  }
node v12.20/net.d.ts CHANGED
@@ -1,11 +1,7 @@
1
- declare module 'node:net' {
2
- export * from 'net';
3
- }
4
-
5
1
  declare module 'net' {
6
- import * as stream from 'node:stream';
7
- import EventEmitter = require('node:events');
8
- import * as dns from 'node:dns';
2
+ import * as stream from 'stream';
3
+ import EventEmitter = require('events');
4
+ import * as dns from 'dns';
9
5
 
10
6
  type LookupFunction = (
11
7
  hostname: string,
node v12.20/os.d.ts CHANGED
@@ -1,7 +1,3 @@
1
- declare module 'node:os' {
2
- export * from 'os';
3
- }
4
-
5
1
  declare module 'os' {
6
2
  interface CpuInfo {
7
3
  model: string;
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@types/node",
3
- "version": "12.20.9",
3
+ "version": "12.20.13",
4
4
  "description": "TypeScript definitions for Node.js",
5
5
  "license": "MIT",
6
6
  "contributors": [
@@ -34,11 +34,6 @@
34
34
  "url": "https://github.com/btoueg",
35
35
  "githubUsername": "btoueg"
36
36
  },
37
- {
38
- "name": "Bruno Scheufler",
39
- "url": "https://github.com/brunoscheufler",
40
- "githubUsername": "brunoscheufler"
41
- },
42
37
  {
43
38
  "name": "Chigozirim C.",
44
39
  "url": "https://github.com/smac89",
@@ -211,6 +206,6 @@
211
206
  },
212
207
  "scripts": {},
213
208
  "dependencies": {},
214
- "typesPublisherContentHash": "c5d6d66266d666544784dba159285f99f427c1d0486c2a8635034023a6ab2dff",
209
+ "typesPublisherContentHash": "0bfd0d8c2bb28d5b12b7e3e14b8cdb5ea97fdce0381b1760b5b2a48f625ba5fe",
215
210
  "typeScriptVersion": "3.5"
216
211
  }
node v12.20/path.d.ts CHANGED
@@ -1,8 +1,3 @@
1
- declare module 'node:path' {
2
- import path = require('path');
3
- export = path;
4
- }
5
-
6
1
  declare module 'path' {
7
2
  /**
8
3
  * A parsed path object generated by path.parse() or consumed by path.format().
@@ -1,9 +1,5 @@
1
- declare module 'node:perf_hooks' {
2
- export * from 'perf_hooks';
3
- }
4
-
5
1
  declare module 'perf_hooks' {
6
- import { AsyncResource } from 'node:async_hooks';
2
+ import { AsyncResource } from 'async_hooks';
7
3
 
8
4
  interface PerformanceEntry {
9
5
  /**
@@ -1,9 +1,5 @@
1
- declare module 'node:process' {
2
- export = process;
3
- }
4
-
5
1
  declare module 'process' {
6
- import * as tty from 'node:tty';
2
+ import * as tty from 'tty';
7
3
 
8
4
  global {
9
5
  namespace NodeJS {
@@ -1,14 +1,3 @@
1
- /**
2
- * @deprecated since v7.0.0
3
- * The version of the punycode module bundled in Node.js is being deprecated.
4
- * In a future major version of Node.js this module will be removed.
5
- * Users currently depending on the punycode module should switch to using
6
- * the userland-provided Punycode.js module instead.
7
- */
8
- declare module 'node:punycode' {
9
- export * from 'punycode';
10
- }
11
-
12
1
  /**
13
2
  * @deprecated since v7.0.0
14
3
  * The version of the punycode module bundled in Node.js is being deprecated.
@@ -1,7 +1,3 @@
1
- declare module 'node:querystring' {
2
- export * from 'querystring';
3
- }
4
-
5
1
  declare module 'querystring' {
6
2
  interface StringifyOptions {
7
3
  encodeURIComponent?: (str: string) => string;
@@ -1,9 +1,5 @@
1
- declare module 'node:readline' {
2
- export * from 'readline';
3
- }
4
-
5
1
  declare module 'readline' {
6
- import EventEmitter = require('node:events');
2
+ import EventEmitter = require('events');
7
3
 
8
4
  interface Key {
9
5
  sequence?: string;
node v12.20/repl.d.ts CHANGED
@@ -1,26 +1,22 @@
1
- declare module 'node:repl' {
2
- export * from 'repl';
3
- }
4
-
5
1
  declare module 'repl' {
6
- import { Interface, Completer, AsyncCompleter } from 'node:readline';
7
- import { Context } from 'node:vm';
8
- import { InspectOptions } from 'node:util';
2
+ import { Interface, Completer, AsyncCompleter } from 'readline';
3
+ import { Context } from 'vm';
4
+ import { InspectOptions } from 'util';
9
5
 
10
6
  interface ReplOptions {
11
7
  /**
12
8
  * The input prompt to display.
13
- * Default: `"> "`
9
+ * @default "> "
14
10
  */
15
11
  prompt?: string;
16
12
  /**
17
13
  * The `Readable` stream from which REPL input will be read.
18
- * Default: `process.stdin`
14
+ * @default process.stdin
19
15
  */
20
16
  input?: NodeJS.ReadableStream;
21
17
  /**
22
18
  * The `Writable` stream to which REPL output will be written.
23
- * Default: `process.stdout`
19
+ * @default process.stdout
24
20
  */
25
21
  output?: NodeJS.WritableStream;
26
22
  /**
node v12.20/stream.d.ts CHANGED
@@ -1,10 +1,5 @@
1
- declare module 'node:stream' {
2
- import Stream = require('stream');
3
- export = Stream;
4
- }
5
-
6
1
  declare module 'stream' {
7
- import EventEmitter = require('node:events');
2
+ import EventEmitter = require('events');
8
3
 
9
4
  class internal extends EventEmitter {
10
5
  pipe<T extends NodeJS.WritableStream>(destination: T, options?: { end?: boolean; }): T;
@@ -1,7 +1,3 @@
1
- declare module 'node:string_decoder' {
2
- export * from 'string_decoder';
3
- }
4
-
5
1
  declare module 'string_decoder' {
6
2
  class StringDecoder {
7
3
  constructor(encoding?: string);
node v12.20/timers.d.ts CHANGED
@@ -1,7 +1,3 @@
1
- declare module 'node:timers' {
2
- export * from 'timers';
3
- }
4
-
5
1
  declare module 'timers' {
6
2
  function setTimeout(callback: (...args: any[]) => void, ms: number, ...args: any[]): NodeJS.Timeout;
7
3
  namespace setTimeout {
node v12.20/tls.d.ts CHANGED
@@ -1,9 +1,5 @@
1
- declare module 'node:tls' {
2
- export * from 'tls';
3
- }
4
-
5
1
  declare module 'tls' {
6
- import * as net from 'node:net';
2
+ import * as net from 'net';
7
3
 
8
4
  const CLIENT_RENEG_LIMIT: number;
9
5
  const CLIENT_RENEG_WINDOW: number;
@@ -1,7 +1,3 @@
1
- declare module 'node:trace_events' {
2
- export * from 'trace_events';
3
- }
4
-
5
1
  declare module 'trace_events' {
6
2
  /**
7
3
  * The `Tracing` object is used to enable or disable tracing for sets of
@@ -1,8 +1,3 @@
1
- declare module 'node:assert' {
2
- import assert = require('assert');
3
- export = assert;
4
- }
5
-
6
1
  declare module 'assert' {
7
2
  function assert(value: any, message?: string | Error): void;
8
3
  namespace assert {
node v12.20/tty.d.ts CHANGED
@@ -1,9 +1,5 @@
1
- declare module 'node:tty' {
2
- export * from 'tty';
3
- }
4
-
5
1
  declare module 'tty' {
6
- import * as net from 'node:net';
2
+ import * as net from 'net';
7
3
 
8
4
  function isatty(fd: number): boolean;
9
5
  class ReadStream extends net.Socket {
node v12.20/url.d.ts CHANGED
@@ -1,9 +1,5 @@
1
- declare module 'node:url' {
2
- export * from 'url';
3
- }
4
-
5
1
  declare module 'url' {
6
- import { ParsedUrlQuery, ParsedUrlQueryInput } from 'node:querystring';
2
+ import { ParsedUrlQuery, ParsedUrlQueryInput } from 'querystring';
7
3
 
8
4
  // Input to `url.format`
9
5
  interface UrlObject {
node v12.20/util.d.ts CHANGED
@@ -1,7 +1,3 @@
1
- declare module 'node:util' {
2
- export * from 'util';
3
- }
4
-
5
1
  declare module 'util' {
6
2
  interface InspectOptions extends NodeJS.InspectOptions { }
7
3
  function format(format?: any, ...param: any[]): string;
node v12.20/v8.d.ts CHANGED
@@ -1,9 +1,5 @@
1
- declare module 'node:v8' {
2
- export * from 'v8';
3
- }
4
-
5
1
  declare module 'v8' {
6
- import { Readable } from 'node:stream';
2
+ import { Readable } from 'stream';
7
3
 
8
4
  interface HeapSpaceInfo {
9
5
  space_name: string;
node v12.20/vm.d.ts CHANGED
@@ -1,7 +1,3 @@
1
- declare module 'node:vm' {
2
- export * from 'vm';
3
- }
4
-
5
1
  declare module 'vm' {
6
2
  interface Context {
7
3
  [key: string]: any;
@@ -19,7 +15,7 @@ declare module 'vm' {
19
15
  lineOffset?: number;
20
16
  /**
21
17
  * Specifies the column number offset that is displayed in stack traces produced by this script.
22
- * Default: `0`
18
+ * @default 0
23
19
  */
24
20
  columnOffset?: number;
25
21
  }
node v12.20/wasi.d.ts CHANGED
@@ -1,7 +1,3 @@
1
- declare module 'node:wasi' {
2
- export * from 'wasi';
3
- }
4
-
5
1
  declare module 'wasi' {
6
2
  interface WASIOptions {
7
3
  /**
@@ -1,12 +1,8 @@
1
- declare module 'node:worker_threads' {
2
- export * from 'worker_threads';
3
- }
4
-
5
1
  declare module 'worker_threads' {
6
- import { Context } from 'node:vm';
7
- import EventEmitter = require('node:events');
8
- import { Readable, Writable } from 'node:stream';
9
- import { promises } from 'node:fs';
2
+ import { Context } from 'vm';
3
+ import EventEmitter = require('events');
4
+ import { Readable, Writable } from 'stream';
5
+ import { promises } from 'fs';
10
6
 
11
7
  const isMainThread: boolean;
12
8
  const parentPort: null | MessagePort;
node v12.20/zlib.d.ts CHANGED
@@ -1,9 +1,5 @@
1
- declare module 'node:zlib' {
2
- export * from 'zlib';
3
- }
4
-
5
1
  declare module 'zlib' {
6
- import * as stream from 'node:stream';
2
+ import * as stream from 'stream';
7
3
 
8
4
  interface ZlibOptions {
9
5
  /**