retry.d.ts 240 B

12345678
  1. import { GaxiosError } from './common';
  2. export declare function getRetryConfig(err: GaxiosError): Promise<{
  3. shouldRetry: boolean;
  4. config?: undefined;
  5. } | {
  6. shouldRetry: boolean;
  7. config: import("./common").GaxiosOptions;
  8. }>;