Skip to content

Latest commit

 

History

History
33 lines (27 loc) · 749 Bytes

File metadata and controls

33 lines (27 loc) · 749 Bytes

API Report File for "@rushstack/stream-collator"

Do not edit this file. It is a report generated by API Extractor.

// @public
export class Interleaver {
    static registerTask(taskName: string, quietMode?: boolean): ITaskWriter;
    static reset(): void;
    static setStdOut(stdout: {
        write: (text: string) => void;
    }): void;
    }

// @public
export interface ITaskWriter {
    // (undocumented)
    close(): void;
    // (undocumented)
    getStdError(): string;
    // (undocumented)
    getStdOutput(): string;
    // (undocumented)
    write(data: string): void;
    // (undocumented)
    writeError(data: string): void;
    // (undocumented)
    writeLine(data: string): void;
}