unis_crm/frontend/node_modules/gaxios/build/cjs/src/retry.d.ts

9 lines
254 B
TypeScript
Raw Normal View History

2026-03-19 06:27:20 +00:00
import { GaxiosError } from './common.js';
export declare function getRetryConfig(err: GaxiosError): Promise<{
shouldRetry: boolean;
config?: undefined;
} | {
shouldRetry: boolean;
config: import("./common.js").GaxiosOptionsPrepared;
}>;