/var/www/qr4y.gr/server/delivery/node_modules/google-gax/node_modules/gaxios/build/src
NameSizeModeActions
common.d.ts43720644editdlrm
common.js10400644editdlrm
common.js.map5270644editdlrm
gaxios.d.ts15980644editdlrm
gaxios.js114680644editdlrm
gaxios.js.map84900644editdlrm
index.d.ts5310644editdlrm
index.js13870644editdlrm
index.js.map4900644editdlrm
retry.d.ts2400644editdlrm
retry.js52060644editdlrm
retry.js.map35660644editdlrm
Edit: /var/www/qr4y.gr/server/delivery/node_modules/google-gax/node_modules/gaxios/build/src/gaxios.d.ts (1598B)
/// import { Agent } from 'http'; import { URL } from 'url'; import { GaxiosOptions, GaxiosPromise } from './common'; export declare class Gaxios { protected agentCache: Map Agent)>; /** * Default HTTP options that will be used for every HTTP request. */ defaults: GaxiosOptions; /** * The Gaxios class is responsible for making HTTP requests. * @param defaults The default set of options to be used for this instance. */ constructor(defaults?: GaxiosOptions); /** * Perform an HTTP request with the given options. * @param opts Set of HTTP options that will be used for this HTTP request. */ request(opts?: GaxiosOptions): GaxiosPromise; private _defaultAdapter; /** * Internal, retryable version of the `request` method. * @param opts Set of HTTP options that will be used for this HTTP request. */ protected _request(opts?: GaxiosOptions): GaxiosPromise; private getResponseData; /** * Validates the options, and merges them with defaults. * @param opts The original options passed from the client. */ private validateOpts; /** * By default, throw for any non-2xx status code * @param status status code from the HTTP response */ private validateStatus; /** * Encode a set of key/value pars into a querystring format (?foo=bar&baz=boo) * @param params key value pars to encode */ private paramsSerializer; private translateResponse; }