@md-anas-sabah/async-task-runner
Version:
Powerful async task runner for Node.js with concurrency control, smart retries, timeouts & comprehensive reporting. Perfect for web scraping, API processing, file operations & bulk async operations.
12 lines • 433 B
TypeScript
import { Logger } from './types.js';
export declare class DefaultLogger implements Logger {
private isEnabled;
constructor(enabled?: boolean);
info(message: string, ...args: any[]): void;
warn(message: string, ...args: any[]): void;
error(message: string, ...args: any[]): void;
enable(): void;
disable(): void;
}
export declare const createSilentLogger: () => Logger;
//# sourceMappingURL=logger.d.ts.map