/** * Webitel API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 24.04.0 * Contact: support@webitel.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { AxiosPromise, AxiosInstance } from 'axios'; import { Configuration } from '../configuration'; import { RequestArgs, BaseAPI } from '../base'; import { WebitelKnowledgebaseTagsList } from '../api'; /** * TagsApi - axios parameter creator * @export */ export declare const TagsApiAxiosParamCreator: (configuration?: Configuration) => { /** * * @summary List of the all Articles\'s Tag(s). * @param {number} [page] * @param {number} [size] * @param {*} [options] Override http request option. * @throws {RequiredError} */ listTags: (page?: number, size?: number, options?: any) => Promise; }; /** * TagsApi - functional programming interface * @export */ export declare const TagsApiFp: (configuration?: Configuration) => { /** * * @summary List of the all Articles\'s Tag(s). * @param {number} [page] * @param {number} [size] * @param {*} [options] Override http request option. * @throws {RequiredError} */ listTags(page?: number, size?: number, options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>; }; /** * TagsApi - factory interface * @export */ export declare const TagsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => { /** * * @summary List of the all Articles\'s Tag(s). * @param {number} [page] * @param {number} [size] * @param {*} [options] Override http request option. * @throws {RequiredError} */ listTags(page?: number, size?: number, options?: any): AxiosPromise; }; /** * TagsApi - object-oriented interface * @export * @class TagsApi * @extends {BaseAPI} */ export declare class TagsApi extends BaseAPI { /** * * @summary List of the all Articles\'s Tag(s). * @param {number} [page] * @param {number} [size] * @param {*} [options] Override http request option. * @throws {RequiredError} * @memberof TagsApi */ listTags(page?: number, size?: number, options?: any): Promise>; } //# sourceMappingURL=tags-api.d.ts.map