16 lines
604 B
TypeScript
16 lines
604 B
TypeScript
|
|
// node native scope
|
||
|
|
import * as childProcess from 'node:child_process';
|
||
|
|
import * as crypto from 'node:crypto';
|
||
|
|
import * as fs from 'node:fs/promises';
|
||
|
|
import * as fsSync from 'node:fs';
|
||
|
|
import * as http from 'node:http';
|
||
|
|
import * as os from 'node:os';
|
||
|
|
import * as path from 'node:path';
|
||
|
|
import * as readline from 'node:readline/promises';
|
||
|
|
import * as stream from 'node:stream';
|
||
|
|
|
||
|
|
export { childProcess, crypto, fs, fsSync, http, os, path, readline, stream };
|
||
|
|
|
||
|
|
export type { ChildProcess, SpawnOptions } from 'node:child_process';
|
||
|
|
export type { IncomingMessage, Server, ServerResponse } from 'node:http';
|