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.

11 lines 278 B
/** * Error context for safe axios operations */ export interface ErrorContext { type: "validation" | "network" | "timeout" | "unknown"; url: string; method: string; statusCode?: number; originalError?: unknown; } //# sourceMappingURL=ErrorContext.d.ts.map