/** * TwitchGameApi * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * * OpenAPI spec version: 1.0 * * * NOTE: This class is auto generated by the swagger code generator program. * https://github.com/swagger-api/swagger-codegen.git * Do not edit the class manually. */ import { AxiosResponse, AxiosInstance, AxiosRequestConfig } from 'axios'; import { Configuration } from '../configuration'; import { RequestArgs, BaseAPI } from '../base'; import { WeatherForecast } from '../models'; /** * WeatherForecastApi - axios parameter creator * @export */ export declare const WeatherForecastApiAxiosParamCreator: (configuration?: Configuration) => { /** * * @param {*} [options] Override http request option. * @throws {RequiredError} */ weatherForecastGet: (options?: AxiosRequestConfig) => Promise; }; /** * WeatherForecastApi - functional programming interface * @export */ export declare const WeatherForecastApiFp: (configuration?: Configuration) => { /** * * @param {*} [options] Override http request option. * @throws {RequiredError} */ weatherForecastGet(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => Promise>>>; }; /** * WeatherForecastApi - factory interface * @export */ export declare const WeatherForecastApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => { /** * * @param {*} [options] Override http request option. * @throws {RequiredError} */ weatherForecastGet(options?: AxiosRequestConfig): Promise>>; }; /** * WeatherForecastApi - object-oriented interface * @export * @class WeatherForecastApi * @extends {BaseAPI} */ export declare class WeatherForecastApi extends BaseAPI { /** * * @param {*} [options] Override http request option. * @throws {RequiredError} * @memberof WeatherForecastApi */ weatherForecastGet(options?: AxiosRequestConfig): Promise>>; }