Built motion from commit 6a09e18b.|2.6.11
[motion2.git] / legacy-libs / gaxios / build / src / index.d.ts
1 import { GaxiosOptions } from './common';
2 import { Gaxios } from './gaxios';
3 export { GaxiosError, GaxiosPromise, GaxiosResponse, Headers, RetryConfig } from './common';
4 export { Gaxios, GaxiosOptions };
5 /**
6  * The default instance used when the `request` method is directly
7  * invoked.
8  */
9 export declare const instance: Gaxios;
10 /**
11  * Make an HTTP request using the given options.
12  * @param opts Options for the request
13  */
14 export declare function request<T>(opts: GaxiosOptions): Promise<import("./common").GaxiosResponse<T>>;