UNPKG

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