@syntest/core
Version:
The common core of the SynTest Framework
19 lines • 758 B
TypeScript
import { UserInterface } from "./UserInterface";
import * as cliProgress from "cli-progress";
export declare class CommandLineInterface extends UserInterface {
protected showProgressBar: boolean;
protected progressValue: number;
protected budgetValue: number;
protected bar: cliProgress.SingleBar;
constructor(silent?: boolean, verbose?: boolean);
asciiArt(text: string): string;
startProgressBar(): void;
updateProgressBar(value: number, budget: number): void;
stopProgressBar(): void;
log(type: string, text: string): void;
debug(text: string): void;
info(text: string): void;
error(text: string): void;
report(text: string, args: string[]): void;
}
//# sourceMappingURL=CommandLineInterface.d.ts.map