mirror of
https://kevinblog.sytes.net/Code/Jibo-Revival-Group/JiboViteDocs.git
synced 2026-06-16 15:36:18 +00:00
4 lines
226 B
TypeScript
4 lines
226 B
TypeScript
|
|
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;
|