Files
recap/server/node_modules/gaxios/build/cjs/src/retry.d.ts
T
2026-04-09 15:03:31 -05:00

9 lines
254 B
TypeScript

import { GaxiosError } from './common.js';
export declare function getRetryConfig(err: GaxiosError): Promise<{
shouldRetry: boolean;
config?: undefined;
} | {
shouldRetry: boolean;
config: import("./common.js").GaxiosOptionsPrepared;
}>;