diff --git a/flow-typed/console.js.flow b/flow-typed/console.js.flow index 74bff28480..3b167c2338 100644 --- a/flow-typed/console.js.flow +++ b/flow-typed/console.js.flow @@ -38,3 +38,8 @@ declare module 'console' { warn(data: unknown): void; } } + +declare module 'node:console' { + export type * from 'console'; + declare module.exports: $Exports<'console'>; +} diff --git a/flow-typed/environment/node.js b/flow-typed/environment/node.js index c92ff006df..ee4332e590 100644 --- a/flow-typed/environment/node.js +++ b/flow-typed/environment/node.js @@ -5874,6 +5874,11 @@ declare module 'node:assert/strict' { declare module.exports: $Exports<'assert'>['strict']; } +declare module 'node:buffer' { + export type * from 'buffer'; + declare module.exports: $Exports<'buffer'>; +} + declare module 'node:child_process' { export type * from 'child_process'; declare module.exports: $Exports<'child_process'>; @@ -5889,11 +5894,21 @@ declare module 'node:crypto' { declare module.exports: $Exports<'crypto'>; } +declare module 'node:dgram' { + export type * from 'dgram'; + declare module.exports: $Exports<'dgram'>; +} + declare module 'node:dns' { export type * from 'dns'; declare module.exports: $Exports<'dns'>; } +declare module 'node:domain' { + export type * from 'domain'; + declare module.exports: $Exports<'domain'>; +} + declare module 'node:events' { export type * from 'events'; declare module.exports: $Exports<'events'>; @@ -5909,6 +5924,31 @@ declare module 'node:fs/promises' { declare module.exports: $Exports<'fs'>['promises']; } +declare module 'node:http' { + export type * from 'http'; + declare module.exports: $Exports<'http'>; +} + +declare module 'node:https' { + export type * from 'https'; + declare module.exports: $Exports<'https'>; +} + +declare module 'node:inspector' { + export type * from 'inspector'; + declare module.exports: $Exports<'inspector'>; +} + +declare module 'node:module' { + export type * from 'module'; + declare module.exports: $Exports<'module'>; +} + +declare module 'node:net' { + export type * from 'net'; + declare module.exports: $Exports<'net'>; +} + declare module 'node:os' { export type * from 'os'; declare module.exports: $Exports<'os'>; @@ -5929,6 +5969,36 @@ declare module 'node:process' { declare module.exports: $Exports<'process'>; } +declare module 'node:punycode' { + export type * from 'punycode'; + declare module.exports: $Exports<'punycode'>; +} + +declare module 'node:querystring' { + export type * from 'querystring'; + declare module.exports: $Exports<'querystring'>; +} + +declare module 'node:readline' { + export type * from 'readline'; + declare module.exports: $Exports<'readline'>; +} + +declare module 'node:repl' { + export type * from 'repl'; + declare module.exports: $Exports<'repl'>; +} + +declare module 'node:stream' { + export type * from 'stream'; + declare module.exports: $Exports<'stream'>; +} + +declare module 'node:string_decoder' { + export type * from 'string_decoder'; + declare module.exports: $Exports<'string_decoder'>; +} + declare module 'node:timers' { export type * from 'timers'; declare module.exports: $Exports<'timers'>; @@ -5939,6 +6009,16 @@ declare module 'node:timers/promises' { declare module.exports: $Exports<'timers/promises'>; } +declare module 'node:tls' { + export type * from 'tls'; + declare module.exports: $Exports<'tls'>; +} + +declare module 'node:tty' { + export type * from 'tty'; + declare module.exports: $Exports<'tty'>; +} + declare module 'node:url' { declare module.exports: $Exports<'url'>; } @@ -5953,7 +6033,17 @@ declare module 'node:v8' { declare module.exports: $Exports<'v8'>; } +declare module 'node:vm' { + export type * from 'vm'; + declare module.exports: $Exports<'vm'>; +} + declare module 'node:worker_threads' { export type * from 'worker_threads'; declare module.exports: $Exports<'worker_threads'>; } + +declare module 'node:zlib' { + export type * from 'zlib'; + declare module.exports: $Exports<'zlib'>; +}