1 | import { GaxiosOptions } from './common';
|
2 | import { Gaxios } from './gaxios';
|
3 | export { GaxiosError, GaxiosPromise, GaxiosResponse, Headers, RetryConfig, } from './common';
|
4 | export { Gaxios, GaxiosOptions };
|
5 | export * from './interceptor';
|
6 | /**
|
7 | * The default instance used when the `request` method is directly
|
8 | * invoked.
|
9 | */
|
10 | export declare const instance: Gaxios;
|
11 | /**
|
12 | * Make an HTTP request using the given options.
|
13 | * @param opts Options for the request
|
14 | */
|
15 | export declare function request<T>(opts: GaxiosOptions): Promise<import("./common").GaxiosResponse<T>>;
|