andrade-soulseek-downloader
Version:
Simple, safe Soulseek download library with built-in rate limiting to prevent bans
18 lines • 668 B
TypeScript
import { ILogger } from '../../shared';
/**
* Console logger implementation with colored output.
* Adapts logging interface to console with chalk styling.
*/
export declare class ConsoleLogger implements ILogger {
/** Logs informational message in blue */
info(message: string): void;
/** Logs success message in green */
success(message: string): void;
/** Logs warning message in yellow */
warning(message: string): void;
/** Logs error message in red */
error(message: string): void;
/** Logs debug message in gray (only if DEBUG env var set) */
debug(message: string): void;
}
//# sourceMappingURL=console-logger.d.ts.map