UNPKG

226 BTypeScriptView Raw
1export type LogLevelId = 'silent' | 'error' | 'warn' | 'debug';
2export declare function debug(logLevel: LogLevelId, ...messages: any[]): void;
3export declare function warn(logLevel: LogLevelId, warning: string | Error): void;