UNPKG

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