/** * Section API * Get edgey with the Section API * * OpenAPI spec version: 1.0.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 { AxiosPromise, AxiosInstance } from 'axios'; import { Configuration } from '../configuration'; import { RequestArgs, BaseAPI } from '../base'; import { HelpContent } from '../models'; /** * HelpApi - axios parameter creator * @export */ export declare const HelpApiAxiosParamCreator: (configuration?: Configuration) => { /** * Gets contextual help content by identifier * @param {string} helpId Identifier for contextual help * @param {*} [options] Override http request option. * @throws {RequiredError} */ helpGet: (helpId: string, options?: any) => Promise; }; /** * HelpApi - functional programming interface * @export */ export declare const HelpApiFp: (configuration?: Configuration) => { /** * Gets contextual help content by identifier * @param {string} helpId Identifier for contextual help * @param {*} [options] Override http request option. * @throws {RequiredError} */ helpGet(helpId: string, options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>; }; /** * HelpApi - factory interface * @export */ export declare const HelpApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => { /** * Gets contextual help content by identifier * @param {string} helpId Identifier for contextual help * @param {*} [options] Override http request option. * @throws {RequiredError} */ helpGet(helpId: string, options?: any): AxiosPromise; }; /** * HelpApi - object-oriented interface * @export * @class HelpApi * @extends {BaseAPI} */ export declare class HelpApi extends BaseAPI { /** * Gets contextual help content by identifier * @param {string} helpId Identifier for contextual help * @param {*} [options] Override http request option. * @throws {RequiredError} * @memberof HelpApi */ helpGet(helpId: string, options?: any): Promise>; }