redirector-cli
Version:
Global CLI tool for managing Redirector backend services with Docker Compose
19 lines • 741 B
TypeScript
export declare class Logger {
private static spinner;
static info(message: string): void;
static success(message: string): void;
static warning(message: string): void;
static error(message: string): void;
static debug(message: string): void;
static startSpinner(message: string): void;
static updateSpinner(message: string): void;
static succeedSpinner(message?: string): void;
static failSpinner(message?: string): void;
static stopSpinner(): void;
static header(message: string): void;
static subheader(message: string): void;
static list(items: string[]): void;
static table(data: Record<string, string>): void;
static newLine(): void;
}
//# sourceMappingURL=logger.d.ts.map