UNPKG

496 BTypeScriptView Raw
1import { ProgressLog } from "../../spi/log/ProgressLog";
2/**
3 * Progress log to logger, at a desired logging level
4 */
5export declare class LoggingProgressLog implements ProgressLog {
6 name: string;
7 private readonly level;
8 log: string;
9 constructor(name: string, level?: "debug" | "info");
10 write(msg: string, ...args: string[]): void;
11 isAvailable(): Promise<boolean>;
12 flush(): Promise<void>;
13 close(): Promise<void>;
14}
15//# sourceMappingURL=LoggingProgressLog.d.ts.map
\No newline at end of file