retry.d.ts 240 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 import { GaxiosError } from './common'; export declare function getRetryConfig(err: GaxiosError): Promise<{ shouldRetry: boolean; config?: undefined; } | { shouldRetry: boolean; config: import("./common").GaxiosOptions; }>;