UNPKG

guardz-axios

Version:

Type-safe HTTP client built on top of Axios with runtime validation using guardz. Part of the guardz ecosystem for comprehensive TypeScript type safety.

10 lines 255 B
/** * Retry configuration for safe axios operations */ export interface RetryConfig { attempts: number; delay: number; backoff?: "linear" | "exponential"; retryOn?: (error: unknown) => boolean; } //# sourceMappingURL=RetryConfig.d.ts.map