zyf-server
Version:
A modern HTTP static file server with Vue SSR directory listing, built for developers
13 lines • 417 B
TypeScript
/**
* 简单的日志工具类
*/
export declare class Logger {
private readonly debugger;
private readonly namespace;
constructor(namespace: string);
info(message: string, ...args: unknown[]): void;
warn(message: string, ...args: unknown[]): void;
error(message: string, ...args: unknown[]): void;
debug(message: string, ...args: unknown[]): void;
}
//# sourceMappingURL=Logger.d.ts.map