johny-cache
Version:
Easy distributed caching for Node.js
10 lines (9 loc) • 348 B
TypeScript
export declare class Logger {
private getTimestamp;
verbose(message: string, object?: any): void;
debug(message: string, object?: any): void;
log(message: string, object?: any): void;
warn(message: string, object?: any): void;
error(message: string, object?: any): void;
critical(message: string, object?: any): void;
}