/** * @description 对console简单做一层封装,作为debug问题时使用 * */ interface LoggerFunc { (...args: unknown[]): void; } export declare class DebugLogger { private tag; info: LoggerFunc; warn: LoggerFunc; error: LoggerFunc; constructor(tag: any); } export default function createDebuggerLogger(tag: any): DebugLogger; export {};