Built motion from commit 6a09e18b.|2.6.11
[motion2.git] / legacy-libs / gaxios / build / src / retry.d.ts
diff --git a/legacy-libs/gaxios/build/src/retry.d.ts b/legacy-libs/gaxios/build/src/retry.d.ts
new file mode 100644 (file)
index 0000000..cfc5ee2
--- /dev/null
@@ -0,0 +1,8 @@
+import { GaxiosError } from './common';
+export declare function getRetryConfig(err: GaxiosError): Promise<{
+    shouldRetry: boolean;
+    config?: undefined;
+} | {
+    shouldRetry: boolean;
+    config: import("./common").GaxiosOptions;
+}>;