mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
17 lines
456 B
TypeScript
17 lines
456 B
TypeScript
// Type definitions for stdout-stream 1.4
|
|
// Project: https://github.com/mafintosh/stdout-stream#readme
|
|
// Definitions by: Junxiao Shi <https://github.com/yoursunny>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
|
|
/// <reference types="node" />
|
|
import { Writable } from "stream";
|
|
|
|
interface StdoutStream extends Writable {
|
|
readonly _isStdio: true;
|
|
readonly isTTY: boolean;
|
|
}
|
|
|
|
declare var stdout: StdoutStream;
|
|
|
|
export = stdout;
|