This commit is contained in:
wdvipa
2026-02-09 16:34:01 +08:00
commit 450367dea2
92 changed files with 36822 additions and 0 deletions

15
dist/utils/Logger.d.ts vendored Normal file
View File

@@ -0,0 +1,15 @@
/**
* 日志工具类
*/
declare class Logger {
private prefix;
constructor(prefix?: string);
private formatMessage;
info(message: string, ...args: any[]): void;
warn(message: string, ...args: any[]): void;
error(message: string, ...args: any[]): void;
debug(message: string, ...args: any[]): void;
trace(message: string, ...args: any[]): void;
}
export default Logger;
//# sourceMappingURL=Logger.d.ts.map