UNPKG

axios-retryer

Version:

axios-retryer is an advanced Axios request manager offering intelligent retry logic with token refresh, concurrency control, priority queuing, and a flexible plugin architecture, all built with TypeScript for robust HTTP client integrations.

9 lines (8 loc) 291 B
export declare class RetryLogger { private debugMode; constructor(debugMode?: boolean); log(message: string, data?: any): void; error(message: string, error?: unknown): void; warn(message: string, data?: unknown): void; debug(message: string, meta?: object): void; }