@codingtools/cdt
Version:
CLI for Developers
11 lines (10 loc) • 466 B
TypeScript
export default class Logger {
static spinner: any;
static success(thisRef: any, message: string): void;
static info(thisRef: any, message: string): void;
static error(thisRef: any, message: string): void;
static warn(thisRef: any, message: any): void;
static progressStart(thisRef: any, message: string): void;
static progressStop(thisRef: any, message: string): void;
static progressStopError(thisRef: any, message: string): void;
}