ts-minifer
Version:
Advanced TypeScript code minification and compression tool
11 lines (10 loc) • 324 B
TypeScript
export declare class Logger {
private verbose;
constructor(verbose?: boolean);
info(message: string): void;
warn(message: string): void;
error(message: string): void;
debug(message: string): void;
progress(current: number, total: number, message?: string): void;
private createProgressBar;
}