4 lines
226 B
TypeScript
Raw Normal View History

2024-07-07 18:49:38 -07:00
export type LogLevelId = 'silent' | 'error' | 'warn' | 'debug';
export declare function debug(logLevel: LogLevelId, ...messages: any[]): void;
export declare function warn(logLevel: LogLevelId, warning: string | Error): void;