the-tip-top-backend/node_modules/gaxios/build/cjs/src/retry.d.ts
2025-11-17 23:47:54 +01: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;
}>;