Files
vibn-agent-runner/node_modules/gaxios/build/esm/src/retry.d.ts
2026-02-26 14:50:20 -08: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;
}>;