UNPKG

411 BTypeScriptView Raw
1export declare const DEBUG = "DEBUG";
2export declare const INFO = "INFO";
3export declare const WARN = "WARN";
4export declare const ERROR = "ERROR";
5export declare const LOG_LEVELS: {
6 DEBUG: number;
7 INFO: number;
8 WARN: number;
9 ERROR: number;
10};
11export declare type LogLevels = keyof typeof LOG_LEVELS;
12export declare function compareLevels(firstLevel: LogLevels, secondLevel: LogLevels): number;