UNPKG

517 BTypeScriptView Raw
1import { ProgressLog } from "../../spi/log/ProgressLog";
2/**
3 * ProgressLog implementation that captures the log into a string and makes it
4 * available from the log field
5 */
6export declare class StringCapturingProgressLog implements ProgressLog {
7 readonly name: string;
8 log: string;
9 stripAnsi: boolean;
10 close(): Promise<void>;
11 flush(): Promise<void>;
12 write(msg: string, ...args: string[]): void;
13 isAvailable(): Promise<boolean>;
14}
15//# sourceMappingURL=StringCapturingProgressLog.d.ts.map
\No newline at end of file