@syntest/core
Version:
The common core of the SynTest Framework
11 lines • 477 B
TypeScript
import { CommandLineInterface } from "./CommandLineInterface";
export declare abstract class MonitorCommandLineInterface extends CommandLineInterface {
protected logs: string[];
constructor(silent?: boolean, verbose?: boolean);
render(): void;
log(type: string, text: string): void;
startProgressBar(): void;
updateProgressBar(value: number, budget: number): void;
stopProgressBar(): void;
}
//# sourceMappingURL=MonitorCommandLineInterface.d.ts.map