UNPKG

303 BTypeScriptView Raw
1export declare class Logger {
2 static error(message: string): void;
3 static warn(message: string): void;
4 static info(message: string): void;
5 static debug(message: string): void;
6 static logMessage(level: string, message: string): string;
7 static shouldLog(level: string): boolean;
8}