Built motion from commit 6a09e18b.|2.6.11
[motion2.git] / legacy-libs / gaxios / build / src / retry.d.ts
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 }>;