Installation
npm install --save @types/stdout-stream
Summary
This package contains type definitions for stdout-stream (https://github.com/mafintosh/stdout-stream#readme).
Details
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/stdout-stream.
index.d.ts
/// <reference types="node" />
import { Writable } from "stream";
interface StdoutStream extends Writable {
readonly _isStdio: true;
readonly isTTY: boolean;
}
declare var stdout: StdoutStream;
export = stdout;
Additional Details
- Last updated: Tue, 07 Nov 2023 15:11:36 GMT
- Dependencies: @types/node
Credits
These definitions were written by Junxiao Shi.