/** * IDE API * Handle user environment * * OpenAPI spec version: 1.0.0 * Contact: dev@corley.it * * 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 { AxiosPromise, AxiosInstance } from 'axios'; import { Configuration } from '../configuration'; import { RequestArgs, BaseAPI } from '../base'; import { Image } from '../models'; /** * ImageApi - axios parameter creator * @export */ export declare const ImageApiAxiosParamCreator: (configuration?: Configuration) => { /** * * @summary return available images * @param {*} [options] Override http request option. * @throws {RequiredError} */ v1ImageGet: (options?: any) => Promise; }; /** * ImageApi - functional programming interface * @export */ export declare const ImageApiFp: (configuration?: Configuration) => { /** * * @summary return available images * @param {*} [options] Override http request option. * @throws {RequiredError} */ v1ImageGet(options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>>; }; /** * ImageApi - factory interface * @export */ export declare const ImageApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => { /** * * @summary return available images * @param {*} [options] Override http request option. * @throws {RequiredError} */ v1ImageGet(options?: any): AxiosPromise>; }; /** * ImageApi - object-oriented interface * @export * @class ImageApi * @extends {BaseAPI} */ export declare class ImageApi extends BaseAPI { /** * * @summary return available images * @param {*} [options] Override http request option. * @throws {RequiredError} * @memberof ImageApi */ v1ImageGet(options?: any): Promise>; }