Built motion from commit 6a09e18b.|2.6.11
[motion2.git] / legacy-libs / gaxios / build / src / index.d.ts
diff --git a/legacy-libs/gaxios/build/src/index.d.ts b/legacy-libs/gaxios/build/src/index.d.ts
new file mode 100644 (file)
index 0000000..a1dbc44
--- /dev/null
@@ -0,0 +1,14 @@
+import { GaxiosOptions } from './common';
+import { Gaxios } from './gaxios';
+export { GaxiosError, GaxiosPromise, GaxiosResponse, Headers, RetryConfig } from './common';
+export { Gaxios, GaxiosOptions };
+/**
+ * The default instance used when the `request` method is directly
+ * invoked.
+ */
+export declare const instance: Gaxios;
+/**
+ * Make an HTTP request using the given options.
+ * @param opts Options for the request
+ */
+export declare function request<T>(opts: GaxiosOptions): Promise<import("./common").GaxiosResponse<T>>;