// Type definitions for stdout-stream 1.4 // Project: https://github.com/mafintosh/stdout-stream#readme // Definitions by: Junxiao Shi // Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped /// import { Writable } from "stream"; interface StdoutStream extends Writable { readonly _isStdio: true; readonly isTTY: boolean; } declare var stdout: StdoutStream; export = stdout;