blob: 5e216121a588b86acbb08ba7bc268f9fec2d67c3 (
plain) (
blame)
1
2
3
|
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;
|