@types/node
Advanced tools
Comparing version 20.6.2 to 20.6.3
@@ -6,3 +6,3 @@ /** | ||
*/ | ||
declare module 'node:assert' { | ||
declare module 'assert' { | ||
/** | ||
@@ -970,5 +970,5 @@ * An alias of {@link ok}. | ||
} | ||
declare module 'assert' { | ||
import assert = require('node:assert'); | ||
declare module 'node:assert' { | ||
import assert = require('assert'); | ||
export = assert; | ||
} |
@@ -17,3 +17,3 @@ /** | ||
*/ | ||
declare module 'node:async_hooks' { | ||
declare module 'async_hooks' { | ||
/** | ||
@@ -531,4 +531,4 @@ * ```js | ||
} | ||
declare module 'async_hooks' { | ||
export * from 'node:async_hooks'; | ||
declare module 'node:async_hooks' { | ||
export * from 'async_hooks'; | ||
} |
@@ -55,3 +55,3 @@ /** | ||
*/ | ||
declare module 'node:cluster' { | ||
declare module 'cluster' { | ||
import * as child from 'node:child_process'; | ||
@@ -412,5 +412,5 @@ import EventEmitter = require('node:events'); | ||
} | ||
declare module 'cluster' { | ||
export * from 'node:cluster'; | ||
export { default as default } from 'node:cluster'; | ||
declare module 'node:cluster' { | ||
export * from 'cluster'; | ||
export { default as default } from 'cluster'; | ||
} |
/** @deprecated since v6.3.0 - use constants property exposed by the relevant module instead. */ | ||
declare module 'node:constants' { | ||
declare module 'constants' { | ||
import { constants as osConstants, SignalConstants } from 'node:os'; | ||
@@ -15,5 +15,5 @@ import { constants as cryptoConstants } from 'node:crypto'; | ||
declare module 'constants' { | ||
import constants = require('node:constants'); | ||
declare module 'node:constants' { | ||
import constants = require('constants'); | ||
export = constants; | ||
} |
@@ -28,3 +28,3 @@ /** | ||
*/ | ||
declare module 'node:dgram' { | ||
declare module 'dgram' { | ||
import { AddressInfo } from 'node:net'; | ||
@@ -549,4 +549,4 @@ import * as dns from 'node:dns'; | ||
} | ||
declare module 'dgram' { | ||
export * from 'node:dgram'; | ||
declare module 'node:dgram' { | ||
export * from 'dgram'; | ||
} |
@@ -25,3 +25,3 @@ /** | ||
*/ | ||
declare module 'node:diagnostics_channel' { | ||
declare module 'diagnostics_channel' { | ||
/** | ||
@@ -190,4 +190,4 @@ * Check if there are active subscribers to the named channel. This is helpful if | ||
} | ||
declare module 'diagnostics_channel' { | ||
export * from 'node:diagnostics_channel'; | ||
declare module 'node:diagnostics_channel' { | ||
export * from 'diagnostics_channel'; | ||
} |
@@ -47,3 +47,3 @@ /** | ||
*/ | ||
declare module 'node:dns' { | ||
declare module 'dns' { | ||
import * as dnsPromises from 'node:dns/promises'; | ||
@@ -667,4 +667,4 @@ // Supported getaddrinfo flags. | ||
} | ||
declare module 'dns' { | ||
export * from 'node:dns'; | ||
declare module 'node:dns' { | ||
export * from 'dns'; | ||
} |
@@ -7,3 +7,3 @@ /** | ||
*/ | ||
declare module 'node:dns/promises' { | ||
declare module 'dns/promises' { | ||
import { | ||
@@ -413,4 +413,4 @@ LookupAddress, | ||
} | ||
declare module 'dns/promises' { | ||
export * from 'node:dns/promises'; | ||
declare module 'node:dns/promises' { | ||
export * from 'dns/promises'; | ||
} |
@@ -17,3 +17,3 @@ /** | ||
*/ | ||
declare module 'node:domain' { | ||
declare module 'domain' { | ||
import EventEmitter = require('node:events'); | ||
@@ -169,4 +169,4 @@ /** | ||
} | ||
declare module 'domain' { | ||
export * from 'node:domain'; | ||
declare module 'node:domain' { | ||
export * from 'domain'; | ||
} |
@@ -37,3 +37,3 @@ /** | ||
*/ | ||
declare module 'node:events' { | ||
declare module 'events' { | ||
// NOTE: This class is in the docs but is **not actually exported** by Node. | ||
@@ -786,5 +786,5 @@ // If https://github.com/nodejs/node/issues/39903 gets resolved and Node | ||
} | ||
declare module 'events' { | ||
import events = require('node:events'); | ||
declare module 'node:events' { | ||
import events = require('events'); | ||
export = events; | ||
} |
@@ -11,3 +11,3 @@ /** | ||
*/ | ||
declare module 'node:fs/promises' { | ||
declare module 'fs/promises' { | ||
import { Abortable } from 'node:events'; | ||
@@ -1202,4 +1202,4 @@ import { Stream } from 'node:stream'; | ||
} | ||
declare module 'fs/promises' { | ||
export * from 'node:fs/promises'; | ||
declare module 'node:fs/promises' { | ||
export * from 'fs/promises'; | ||
} |
@@ -6,3 +6,3 @@ /** | ||
*/ | ||
declare module 'node:https' { | ||
declare module 'https' { | ||
import { Duplex } from 'node:stream'; | ||
@@ -440,4 +440,4 @@ import * as tls from 'node:tls'; | ||
} | ||
declare module 'https' { | ||
export * from 'node:https'; | ||
declare module 'node:https' { | ||
export * from 'https'; | ||
} |
/** | ||
* @since v0.3.7 | ||
*/ | ||
declare module 'node:module' { | ||
declare module 'module' { | ||
import { URL } from 'node:url'; | ||
@@ -254,5 +254,5 @@ import { MessagePort } from 'node:worker_threads'; | ||
} | ||
declare module 'module' { | ||
import module = require('node:module'); | ||
declare module 'node:module' { | ||
import module = require('module'); | ||
export = module; | ||
} |
@@ -15,3 +15,3 @@ /** | ||
*/ | ||
declare module 'node:net' { | ||
declare module 'net' { | ||
import * as stream from 'node:stream'; | ||
@@ -892,4 +892,4 @@ import { Abortable, EventEmitter } from 'node:events'; | ||
} | ||
declare module 'net' { | ||
export * from 'node:net'; | ||
declare module 'node:net' { | ||
export * from 'net'; | ||
} |
@@ -10,3 +10,3 @@ /** | ||
*/ | ||
declare module 'node:os' { | ||
declare module 'os' { | ||
interface CpuInfo { | ||
@@ -476,4 +476,4 @@ model: string; | ||
} | ||
declare module 'os' { | ||
export * from 'node:os'; | ||
declare module 'node:os' { | ||
export * from 'os'; | ||
} |
{ | ||
"name": "@types/node", | ||
"version": "20.6.2", | ||
"version": "20.6.3", | ||
"description": "TypeScript definitions for Node.js", | ||
@@ -230,4 +230,4 @@ "homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node", | ||
"dependencies": {}, | ||
"typesPublisherContentHash": "666d6ac9c6061bdb566c308767b3da161cec6ddb4cee15a88eaa8419321130a9", | ||
"typesPublisherContentHash": "f1418d8a7dbeb2c5fe85310c13d6a755ae2cbb7ba107841494e5eb82b5ed5915", | ||
"typeScriptVersion": "4.5" | ||
} |
declare module 'path/posix' { | ||
import path = require('node:path'); | ||
import path = require('path'); | ||
export = path; | ||
} | ||
declare module 'path/win32' { | ||
import path = require('node:path'); | ||
import path = require('path'); | ||
export = path; | ||
@@ -18,3 +18,3 @@ } | ||
*/ | ||
declare module 'node:path' { | ||
declare module 'path' { | ||
namespace path { | ||
@@ -181,4 +181,4 @@ /** | ||
} | ||
declare module 'path' { | ||
import path = require('node:path'); | ||
declare module 'node:path' { | ||
import path = require('path'); | ||
export = path; | ||
@@ -185,0 +185,0 @@ } |
@@ -32,3 +32,3 @@ /** | ||
*/ | ||
declare module 'node:perf_hooks' { | ||
declare module 'perf_hooks' { | ||
import { AsyncResource } from 'node:async_hooks'; | ||
@@ -637,4 +637,4 @@ type EntryType = 'node' | 'mark' | 'measure' | 'gc' | 'function' | 'http2' | 'http' | 'dns'; | ||
} | ||
declare module 'perf_hooks' { | ||
export * from 'node:perf_hooks'; | ||
declare module 'node:perf_hooks' { | ||
export * from 'perf_hooks'; | ||
} |
@@ -29,3 +29,3 @@ /** | ||
*/ | ||
declare module 'node:punycode' { | ||
declare module 'punycode' { | ||
/** | ||
@@ -116,4 +116,4 @@ * The `punycode.decode()` method converts a [Punycode](https://tools.ietf.org/html/rfc3492) string of ASCII-only | ||
} | ||
declare module 'punycode' { | ||
export * from 'node:punycode'; | ||
declare module 'node:punycode' { | ||
export * from 'punycode'; | ||
} |
@@ -14,3 +14,3 @@ /** | ||
*/ | ||
declare module 'node:querystring' { | ||
declare module 'querystring' { | ||
interface StringifyOptions { | ||
@@ -130,4 +130,4 @@ encodeURIComponent?: ((str: string) => string) | undefined; | ||
} | ||
declare module 'querystring' { | ||
export * from 'node:querystring'; | ||
declare module 'node:querystring' { | ||
export * from 'querystring'; | ||
} |
@@ -35,3 +35,3 @@ /** | ||
*/ | ||
declare module 'node:readline' { | ||
declare module 'readline' { | ||
import { Abortable, EventEmitter } from 'node:events'; | ||
@@ -525,4 +525,4 @@ import * as promises from 'node:readline/promises'; | ||
} | ||
declare module 'readline' { | ||
export * from 'node:readline'; | ||
declare module 'node:readline' { | ||
export * from 'readline'; | ||
} |
@@ -5,3 +5,3 @@ /** | ||
*/ | ||
declare module 'node:readline/promises' { | ||
declare module 'readline/promises' { | ||
import { Interface as _Interface, ReadLineOptions, Completer, AsyncCompleter, Direction } from 'node:readline'; | ||
@@ -144,4 +144,4 @@ import { Abortable } from 'node:events'; | ||
} | ||
declare module 'readline/promises' { | ||
export * from 'node:readline/promises'; | ||
declare module 'node:readline/promises' { | ||
export * from 'readline/promises'; | ||
} |
@@ -11,3 +11,3 @@ # Installation | ||
### Additional Details | ||
* Last updated: Sat, 16 Sep 2023 06:34:52 GMT | ||
* Last updated: Wed, 20 Sep 2023 03:06:41 GMT | ||
* Dependencies: none | ||
@@ -14,0 +14,0 @@ * Global values: `AbortController`, `AbortSignal`, `__dirname`, `__filename`, `console`, `exports`, `gc`, `global`, `module`, `process`, `require`, `structuredClone` |
@@ -11,3 +11,3 @@ /** | ||
*/ | ||
declare module 'node:repl' { | ||
declare module 'repl' { | ||
import { Interface, Completer, AsyncCompleter } from 'node:readline'; | ||
@@ -423,4 +423,4 @@ import { Context } from 'node:vm'; | ||
} | ||
declare module 'repl' { | ||
export * from 'node:repl'; | ||
declare module 'node:repl' { | ||
export * from 'repl'; | ||
} |
@@ -1,2 +0,2 @@ | ||
declare module 'node:stream/consumers' { | ||
declare module 'stream/consumers' { | ||
import { Blob as NodeBlob } from 'node:buffer'; | ||
@@ -10,4 +10,4 @@ import { Readable } from 'node:stream'; | ||
} | ||
declare module 'stream/consumers' { | ||
export * from 'node:stream/consumers'; | ||
declare module 'node:stream/consumers' { | ||
export * from 'stream/consumers'; | ||
} |
@@ -1,2 +0,2 @@ | ||
declare module 'node:stream/promises' { | ||
declare module 'stream/promises' { | ||
import { FinishedOptions, PipelineSource, PipelineTransform, PipelineDestination, PipelinePromise, PipelineOptions } from 'node:stream'; | ||
@@ -40,4 +40,4 @@ function finished(stream: NodeJS.ReadableStream | NodeJS.WritableStream | NodeJS.ReadWriteStream, options?: FinishedOptions): Promise<void>; | ||
} | ||
declare module 'stream/promises' { | ||
export * from 'node:stream/promises'; | ||
declare module 'node:stream/promises' { | ||
export * from 'stream/promises'; | ||
} |
@@ -1,2 +0,2 @@ | ||
declare module 'node:stream/web' { | ||
declare module 'stream/web' { | ||
// stub module, pending copy&paste from .d.ts or manual impl | ||
@@ -328,4 +328,4 @@ // copy from lib.dom.d.ts | ||
} | ||
declare module 'stream/web' { | ||
export * from 'node:stream/web'; | ||
declare module 'node:stream/web' { | ||
export * from 'stream/web'; | ||
} |
@@ -41,3 +41,3 @@ /** | ||
*/ | ||
declare module 'node:string_decoder' { | ||
declare module 'string_decoder' { | ||
class StringDecoder { | ||
@@ -66,4 +66,4 @@ constructor(encoding?: BufferEncoding); | ||
} | ||
declare module 'string_decoder' { | ||
export * from 'node:string_decoder'; | ||
declare module 'node:string_decoder' { | ||
export * from 'string_decoder'; | ||
} |
@@ -11,3 +11,3 @@ /** | ||
*/ | ||
declare module 'node:timers' { | ||
declare module 'timers' { | ||
import { Abortable } from 'node:events'; | ||
@@ -224,4 +224,4 @@ import { setTimeout as setTimeoutPromise, setImmediate as setImmediatePromise, setInterval as setIntervalPromise } from 'node:timers/promises'; | ||
} | ||
declare module 'timers' { | ||
export * from 'node:timers'; | ||
declare module 'node:timers' { | ||
export * from 'timers'; | ||
} |
@@ -14,3 +14,3 @@ /** | ||
*/ | ||
declare module 'node:timers/promises' { | ||
declare module 'timers/promises' { | ||
import { TimerOptions } from 'node:timers'; | ||
@@ -92,4 +92,4 @@ /** | ||
} | ||
declare module 'timers/promises' { | ||
export * from 'node:timers/promises'; | ||
declare module 'node:timers/promises' { | ||
export * from 'timers/promises'; | ||
} |
@@ -11,3 +11,3 @@ /** | ||
*/ | ||
declare module 'node:tls' { | ||
declare module 'tls' { | ||
import { X509Certificate } from 'node:crypto'; | ||
@@ -1129,4 +1129,4 @@ import * as net from 'node:net'; | ||
} | ||
declare module 'tls' { | ||
export * from 'node:tls'; | ||
declare module 'node:tls' { | ||
export * from 'tls'; | ||
} |
@@ -99,3 +99,3 @@ /** | ||
*/ | ||
declare module 'node:trace_events' { | ||
declare module 'trace_events' { | ||
/** | ||
@@ -181,4 +181,4 @@ * The `Tracing` object is used to enable or disable tracing for sets of | ||
} | ||
declare module 'trace_events' { | ||
export * from 'node:trace_events'; | ||
declare module 'node:trace_events' { | ||
export * from 'trace_events'; | ||
} |
@@ -6,3 +6,3 @@ /** | ||
*/ | ||
declare module 'node:assert' { | ||
declare module 'assert' { | ||
/** | ||
@@ -970,5 +970,5 @@ * An alias of {@link ok}. | ||
} | ||
declare module 'assert' { | ||
import assert = require('node:assert'); | ||
declare module 'node:assert' { | ||
import assert = require('assert'); | ||
export = assert; | ||
} |
@@ -17,3 +17,3 @@ /** | ||
*/ | ||
declare module 'node:async_hooks' { | ||
declare module 'async_hooks' { | ||
/** | ||
@@ -531,4 +531,4 @@ * ```js | ||
} | ||
declare module 'async_hooks' { | ||
export * from 'node:async_hooks'; | ||
declare module 'node:async_hooks' { | ||
export * from 'async_hooks'; | ||
} |
@@ -55,3 +55,3 @@ /** | ||
*/ | ||
declare module 'node:cluster' { | ||
declare module 'cluster' { | ||
import * as child from 'node:child_process'; | ||
@@ -412,5 +412,5 @@ import EventEmitter = require('node:events'); | ||
} | ||
declare module 'cluster' { | ||
export * from 'node:cluster'; | ||
export { default as default } from 'node:cluster'; | ||
declare module 'node:cluster' { | ||
export * from 'cluster'; | ||
export { default as default } from 'cluster'; | ||
} |
/** @deprecated since v6.3.0 - use constants property exposed by the relevant module instead. */ | ||
declare module 'node:constants' { | ||
declare module 'constants' { | ||
import { constants as osConstants, SignalConstants } from 'node:os'; | ||
@@ -15,5 +15,5 @@ import { constants as cryptoConstants } from 'node:crypto'; | ||
declare module 'constants' { | ||
import constants = require('node:constants'); | ||
declare module 'node:constants' { | ||
import constants = require('constants'); | ||
export = constants; | ||
} |
@@ -28,3 +28,3 @@ /** | ||
*/ | ||
declare module 'node:dgram' { | ||
declare module 'dgram' { | ||
import { AddressInfo } from 'node:net'; | ||
@@ -549,4 +549,4 @@ import * as dns from 'node:dns'; | ||
} | ||
declare module 'dgram' { | ||
export * from 'node:dgram'; | ||
declare module 'node:dgram' { | ||
export * from 'dgram'; | ||
} |
@@ -25,3 +25,3 @@ /** | ||
*/ | ||
declare module 'node:diagnostics_channel' { | ||
declare module 'diagnostics_channel' { | ||
/** | ||
@@ -190,4 +190,4 @@ * Check if there are active subscribers to the named channel. This is helpful if | ||
} | ||
declare module 'diagnostics_channel' { | ||
export * from 'node:diagnostics_channel'; | ||
declare module 'node:diagnostics_channel' { | ||
export * from 'diagnostics_channel'; | ||
} |
@@ -47,3 +47,3 @@ /** | ||
*/ | ||
declare module 'node:dns' { | ||
declare module 'dns' { | ||
import * as dnsPromises from 'node:dns/promises'; | ||
@@ -667,4 +667,4 @@ // Supported getaddrinfo flags. | ||
} | ||
declare module 'dns' { | ||
export * from 'node:dns'; | ||
declare module 'node:dns' { | ||
export * from 'dns'; | ||
} |
@@ -7,3 +7,3 @@ /** | ||
*/ | ||
declare module 'node:dns/promises' { | ||
declare module 'dns/promises' { | ||
import { | ||
@@ -413,4 +413,4 @@ LookupAddress, | ||
} | ||
declare module 'dns/promises' { | ||
export * from 'node:dns/promises'; | ||
declare module 'node:dns/promises' { | ||
export * from 'dns/promises'; | ||
} |
@@ -17,3 +17,3 @@ /** | ||
*/ | ||
declare module 'node:domain' { | ||
declare module 'domain' { | ||
import EventEmitter = require('node:events'); | ||
@@ -169,4 +169,4 @@ /** | ||
} | ||
declare module 'domain' { | ||
export * from 'node:domain'; | ||
declare module 'node:domain' { | ||
export * from 'domain'; | ||
} |
@@ -37,3 +37,3 @@ /** | ||
*/ | ||
declare module 'node:events' { | ||
declare module 'events' { | ||
// NOTE: This class is in the docs but is **not actually exported** by Node. | ||
@@ -786,5 +786,5 @@ // If https://github.com/nodejs/node/issues/39903 gets resolved and Node | ||
} | ||
declare module 'events' { | ||
import events = require('node:events'); | ||
declare module 'node:events' { | ||
import events = require('events'); | ||
export = events; | ||
} |
@@ -11,3 +11,3 @@ /** | ||
*/ | ||
declare module 'node:fs/promises' { | ||
declare module 'fs/promises' { | ||
import { Abortable } from 'node:events'; | ||
@@ -1202,4 +1202,4 @@ import { Stream } from 'node:stream'; | ||
} | ||
declare module 'fs/promises' { | ||
export * from 'node:fs/promises'; | ||
declare module 'node:fs/promises' { | ||
export * from 'fs/promises'; | ||
} |
@@ -6,3 +6,3 @@ /** | ||
*/ | ||
declare module 'node:https' { | ||
declare module 'https' { | ||
import { Duplex } from 'node:stream'; | ||
@@ -440,4 +440,4 @@ import * as tls from 'node:tls'; | ||
} | ||
declare module 'https' { | ||
export * from 'node:https'; | ||
declare module 'node:https' { | ||
export * from 'https'; | ||
} |
/** | ||
* @since v0.3.7 | ||
*/ | ||
declare module 'node:module' { | ||
declare module 'module' { | ||
import { URL } from 'node:url'; | ||
@@ -254,5 +254,5 @@ import { MessagePort } from 'node:worker_threads'; | ||
} | ||
declare module 'module' { | ||
import module = require('node:module'); | ||
declare module 'node:module' { | ||
import module = require('module'); | ||
export = module; | ||
} |
@@ -15,3 +15,3 @@ /** | ||
*/ | ||
declare module 'node:net' { | ||
declare module 'net' { | ||
import * as stream from 'node:stream'; | ||
@@ -892,4 +892,4 @@ import { Abortable, EventEmitter } from 'node:events'; | ||
} | ||
declare module 'net' { | ||
export * from 'node:net'; | ||
declare module 'node:net' { | ||
export * from 'net'; | ||
} |
@@ -10,3 +10,3 @@ /** | ||
*/ | ||
declare module 'node:os' { | ||
declare module 'os' { | ||
interface CpuInfo { | ||
@@ -476,4 +476,4 @@ model: string; | ||
} | ||
declare module 'os' { | ||
export * from 'node:os'; | ||
declare module 'node:os' { | ||
export * from 'os'; | ||
} |
declare module 'path/posix' { | ||
import path = require('node:path'); | ||
import path = require('path'); | ||
export = path; | ||
} | ||
declare module 'path/win32' { | ||
import path = require('node:path'); | ||
import path = require('path'); | ||
export = path; | ||
@@ -18,3 +18,3 @@ } | ||
*/ | ||
declare module 'node:path' { | ||
declare module 'path' { | ||
namespace path { | ||
@@ -181,4 +181,4 @@ /** | ||
} | ||
declare module 'path' { | ||
import path = require('node:path'); | ||
declare module 'node:path' { | ||
import path = require('path'); | ||
export = path; | ||
@@ -185,0 +185,0 @@ } |
@@ -32,3 +32,3 @@ /** | ||
*/ | ||
declare module 'node:perf_hooks' { | ||
declare module 'perf_hooks' { | ||
import { AsyncResource } from 'node:async_hooks'; | ||
@@ -637,4 +637,4 @@ type EntryType = 'node' | 'mark' | 'measure' | 'gc' | 'function' | 'http2' | 'http'; | ||
} | ||
declare module 'perf_hooks' { | ||
export * from 'node:perf_hooks'; | ||
declare module 'node:perf_hooks' { | ||
export * from 'perf_hooks'; | ||
} |
@@ -29,3 +29,3 @@ /** | ||
*/ | ||
declare module 'node:punycode' { | ||
declare module 'punycode' { | ||
/** | ||
@@ -116,4 +116,4 @@ * The `punycode.decode()` method converts a [Punycode](https://tools.ietf.org/html/rfc3492) string of ASCII-only | ||
} | ||
declare module 'punycode' { | ||
export * from 'node:punycode'; | ||
declare module 'node:punycode' { | ||
export * from 'punycode'; | ||
} |
@@ -14,3 +14,3 @@ /** | ||
*/ | ||
declare module 'node:querystring' { | ||
declare module 'querystring' { | ||
interface StringifyOptions { | ||
@@ -130,4 +130,4 @@ encodeURIComponent?: ((str: string) => string) | undefined; | ||
} | ||
declare module 'querystring' { | ||
export * from 'node:querystring'; | ||
declare module 'node:querystring' { | ||
export * from 'querystring'; | ||
} |
@@ -35,3 +35,3 @@ /** | ||
*/ | ||
declare module 'node:readline' { | ||
declare module 'readline' { | ||
import { Abortable, EventEmitter } from 'node:events'; | ||
@@ -525,4 +525,4 @@ import * as promises from 'node:readline/promises'; | ||
} | ||
declare module 'readline' { | ||
export * from 'node:readline'; | ||
declare module 'node:readline' { | ||
export * from 'readline'; | ||
} |
@@ -5,3 +5,3 @@ /** | ||
*/ | ||
declare module 'node:readline/promises' { | ||
declare module 'readline/promises' { | ||
import { Interface as _Interface, ReadLineOptions, Completer, AsyncCompleter, Direction } from 'node:readline'; | ||
@@ -144,4 +144,4 @@ import { Abortable } from 'node:events'; | ||
} | ||
declare module 'readline/promises' { | ||
export * from 'node:readline/promises'; | ||
declare module 'node:readline/promises' { | ||
export * from 'readline/promises'; | ||
} |
@@ -11,3 +11,3 @@ /** | ||
*/ | ||
declare module 'node:repl' { | ||
declare module 'repl' { | ||
import { Interface, Completer, AsyncCompleter } from 'node:readline'; | ||
@@ -423,4 +423,4 @@ import { Context } from 'node:vm'; | ||
} | ||
declare module 'repl' { | ||
export * from 'node:repl'; | ||
declare module 'node:repl' { | ||
export * from 'repl'; | ||
} |
@@ -1,2 +0,2 @@ | ||
declare module 'node:stream/consumers' { | ||
declare module 'stream/consumers' { | ||
import { Blob as NodeBlob } from 'node:buffer'; | ||
@@ -10,4 +10,4 @@ import { Readable } from 'node:stream'; | ||
} | ||
declare module 'stream/consumers' { | ||
export * from 'node:stream/consumers'; | ||
declare module 'node:stream/consumers' { | ||
export * from 'stream/consumers'; | ||
} |
@@ -1,2 +0,2 @@ | ||
declare module 'node:stream/promises' { | ||
declare module 'stream/promises' { | ||
import { FinishedOptions, PipelineSource, PipelineTransform, PipelineDestination, PipelinePromise, PipelineOptions } from 'node:stream'; | ||
@@ -40,4 +40,4 @@ function finished(stream: NodeJS.ReadableStream | NodeJS.WritableStream | NodeJS.ReadWriteStream, options?: FinishedOptions): Promise<void>; | ||
} | ||
declare module 'stream/promises' { | ||
export * from 'node:stream/promises'; | ||
declare module 'node:stream/promises' { | ||
export * from 'stream/promises'; | ||
} |
@@ -1,2 +0,2 @@ | ||
declare module 'node:stream/web' { | ||
declare module 'stream/web' { | ||
// stub module, pending copy&paste from .d.ts or manual impl | ||
@@ -328,4 +328,4 @@ // copy from lib.dom.d.ts | ||
} | ||
declare module 'stream/web' { | ||
export * from 'node:stream/web'; | ||
declare module 'node:stream/web' { | ||
export * from 'stream/web'; | ||
} |
@@ -41,3 +41,3 @@ /** | ||
*/ | ||
declare module 'node:string_decoder' { | ||
declare module 'string_decoder' { | ||
class StringDecoder { | ||
@@ -66,4 +66,4 @@ constructor(encoding?: BufferEncoding); | ||
} | ||
declare module 'string_decoder' { | ||
export * from 'node:string_decoder'; | ||
declare module 'node:string_decoder' { | ||
export * from 'string_decoder'; | ||
} |
@@ -11,3 +11,3 @@ /** | ||
*/ | ||
declare module 'node:timers' { | ||
declare module 'timers' { | ||
import { Abortable } from 'node:events'; | ||
@@ -224,4 +224,4 @@ import { setTimeout as setTimeoutPromise, setImmediate as setImmediatePromise, setInterval as setIntervalPromise } from 'node:timers/promises'; | ||
} | ||
declare module 'timers' { | ||
export * from 'node:timers'; | ||
declare module 'node:timers' { | ||
export * from 'timers'; | ||
} |
@@ -14,3 +14,3 @@ /** | ||
*/ | ||
declare module 'node:timers/promises' { | ||
declare module 'timers/promises' { | ||
import { TimerOptions } from 'node:timers'; | ||
@@ -92,4 +92,4 @@ /** | ||
} | ||
declare module 'timers/promises' { | ||
export * from 'node:timers/promises'; | ||
declare module 'node:timers/promises' { | ||
export * from 'timers/promises'; | ||
} |
@@ -11,3 +11,3 @@ /** | ||
*/ | ||
declare module 'node:tls' { | ||
declare module 'tls' { | ||
import { X509Certificate } from 'node:crypto'; | ||
@@ -1129,4 +1129,4 @@ import * as net from 'node:net'; | ||
} | ||
declare module 'tls' { | ||
export * from 'node:tls'; | ||
declare module 'node:tls' { | ||
export * from 'tls'; | ||
} |
@@ -99,3 +99,3 @@ /** | ||
*/ | ||
declare module 'node:trace_events' { | ||
declare module 'trace_events' { | ||
/** | ||
@@ -181,4 +181,4 @@ * The `Tracing` object is used to enable or disable tracing for sets of | ||
} | ||
declare module 'trace_events' { | ||
export * from 'node:trace_events'; | ||
declare module 'node:trace_events' { | ||
export * from 'trace_events'; | ||
} |
@@ -26,3 +26,3 @@ /** | ||
*/ | ||
declare module 'node:tty' { | ||
declare module 'tty' { | ||
import * as net from 'node:net'; | ||
@@ -207,4 +207,4 @@ /** | ||
} | ||
declare module 'tty' { | ||
export * from 'node:tty'; | ||
declare module 'node:tty' { | ||
export * from 'tty'; | ||
} |
@@ -10,3 +10,3 @@ /** | ||
*/ | ||
declare module 'node:url' { | ||
declare module 'url' { | ||
import { Blob as NodeBlob } from 'node:buffer'; | ||
@@ -914,4 +914,4 @@ import { ClientRequestArgs } from 'node:http'; | ||
} | ||
declare module 'url' { | ||
export * from 'node:url'; | ||
declare module 'node:url' { | ||
export * from 'url'; | ||
} |
@@ -9,3 +9,3 @@ /** | ||
*/ | ||
declare module 'node:v8' { | ||
declare module 'v8' { | ||
import { Readable } from 'node:stream'; | ||
@@ -634,4 +634,4 @@ interface HeapSpaceInfo { | ||
} | ||
declare module 'v8' { | ||
export * from 'node:v8'; | ||
declare module 'node:v8' { | ||
export * from 'v8'; | ||
} |
@@ -39,3 +39,3 @@ /** | ||
*/ | ||
declare module 'node:vm' { | ||
declare module 'vm' { | ||
import { ImportAssertions } from 'node:module'; | ||
@@ -894,4 +894,4 @@ interface Context extends NodeJS.Dict<any> {} | ||
} | ||
declare module 'vm' { | ||
export * from 'node:vm'; | ||
declare module 'node:vm' { | ||
export * from 'vm'; | ||
} |
@@ -67,3 +67,3 @@ /** | ||
*/ | ||
declare module 'node:wasi' { | ||
declare module 'wasi' { | ||
interface WASIOptions { | ||
@@ -151,4 +151,4 @@ /** | ||
} | ||
declare module 'wasi' { | ||
export * from 'node:wasi'; | ||
declare module 'node:wasi' { | ||
export * from 'wasi'; | ||
} |
@@ -54,3 +54,3 @@ /** | ||
*/ | ||
declare module 'node:worker_threads' { | ||
declare module 'worker_threads' { | ||
import { Blob } from 'node:buffer'; | ||
@@ -693,4 +693,4 @@ import { Context } from 'node:vm'; | ||
} | ||
declare module 'worker_threads' { | ||
export * from 'node:worker_threads'; | ||
declare module 'node:worker_threads' { | ||
export * from 'worker_threads'; | ||
} |
@@ -93,3 +93,3 @@ /** | ||
*/ | ||
declare module 'node:zlib' { | ||
declare module 'zlib' { | ||
import * as stream from 'node:stream'; | ||
@@ -516,4 +516,4 @@ interface ZlibOptions { | ||
} | ||
declare module 'zlib' { | ||
export * from 'node:zlib'; | ||
declare module 'node:zlib' { | ||
export * from 'zlib'; | ||
} |
@@ -26,3 +26,3 @@ /** | ||
*/ | ||
declare module 'node:tty' { | ||
declare module 'tty' { | ||
import * as net from 'node:net'; | ||
@@ -207,4 +207,4 @@ /** | ||
} | ||
declare module 'tty' { | ||
export * from 'node:tty'; | ||
declare module 'node:tty' { | ||
export * from 'tty'; | ||
} |
@@ -10,3 +10,3 @@ /** | ||
*/ | ||
declare module 'node:url' { | ||
declare module 'url' { | ||
import { Blob as NodeBlob } from 'node:buffer'; | ||
@@ -914,4 +914,4 @@ import { ClientRequestArgs } from 'node:http'; | ||
} | ||
declare module 'url' { | ||
export * from 'node:url'; | ||
declare module 'node:url' { | ||
export * from 'url'; | ||
} |
@@ -9,3 +9,3 @@ /** | ||
*/ | ||
declare module 'node:v8' { | ||
declare module 'v8' { | ||
import { Readable } from 'node:stream'; | ||
@@ -634,4 +634,4 @@ interface HeapSpaceInfo { | ||
} | ||
declare module 'v8' { | ||
export * from 'node:v8'; | ||
declare module 'node:v8' { | ||
export * from 'v8'; | ||
} |
@@ -39,3 +39,3 @@ /** | ||
*/ | ||
declare module 'node:vm' { | ||
declare module 'vm' { | ||
import { ImportAssertions } from 'node:module'; | ||
@@ -894,4 +894,4 @@ interface Context extends NodeJS.Dict<any> {} | ||
} | ||
declare module 'vm' { | ||
export * from 'node:vm'; | ||
declare module 'node:vm' { | ||
export * from 'vm'; | ||
} |
@@ -67,3 +67,3 @@ /** | ||
*/ | ||
declare module 'node:wasi' { | ||
declare module 'wasi' { | ||
interface WASIOptions { | ||
@@ -151,4 +151,4 @@ /** | ||
} | ||
declare module 'wasi' { | ||
export * from 'node:wasi'; | ||
declare module 'node:wasi' { | ||
export * from 'wasi'; | ||
} |
@@ -54,3 +54,3 @@ /** | ||
*/ | ||
declare module 'node:worker_threads' { | ||
declare module 'worker_threads' { | ||
import { Blob } from 'node:buffer'; | ||
@@ -693,4 +693,4 @@ import { Context } from 'node:vm'; | ||
} | ||
declare module 'worker_threads' { | ||
export * from 'node:worker_threads'; | ||
declare module 'node:worker_threads' { | ||
export * from 'worker_threads'; | ||
} |
@@ -93,3 +93,3 @@ /** | ||
*/ | ||
declare module 'node:zlib' { | ||
declare module 'zlib' { | ||
import * as stream from 'node:stream'; | ||
@@ -516,4 +516,4 @@ interface ZlibOptions { | ||
} | ||
declare module 'zlib' { | ||
export * from 'node:zlib'; | ||
declare module 'node:zlib' { | ||
export * from 'zlib'; | ||
} |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
3856768