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;
}