Sha256: 0e0d58f5e90c0a270dac052b9c5ad8ccdfc8271118c2105b361063218d528d6e
Contents?: true
Size: 517 Bytes
Versions: 17
Compression:
Stored size: 517 Bytes
Contents
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; }
Version data entries
17 entries across 17 versions & 3 rubygems