Files
memecoin-botV2/.pnpm-store/v10/files/bb/fb2da6da8690bff56093c29311318c40b8c932d749be34c2e6f5dc39b6b4a67d396e5c73dd89744aaab5c66e8f1809b6f128f429c15bd32e107fc0392fa797-exec

16 lines
517 B
Plaintext
Executable File

declare module 'process' {
import * as tty from 'tty';
global {
namespace NodeJS {
// this namespace merge is here because these are specifically used
// as the type for process.stdin, process.stdout, and process.stderr.
// they can't live in tty.d.ts because we need to disambiguate the imported name.
interface ReadStream extends tty.ReadStream {}
interface WriteStream extends tty.WriteStream {}
}
}
export = process;
}