@jellyfin/sdk
Version:
A TypeScript SDK for Jellyfin.
128 lines (127 loc) • 4.34 kB
TypeScript
/**
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* Do not edit the class manually.
*
* Jellyfin API
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*/
import type { Configuration } from '../configuration';
import type { AxiosPromise, AxiosInstance, RawAxiosRequestConfig } from 'axios';
import { type RequestArgs, BaseAPI } from '../base';
import type { BrandingOptions } from '../models';
/**
* BrandingApi - axios parameter creator
* @export
*/
export declare const BrandingApiAxiosParamCreator: (configuration?: Configuration) => {
/**
*
* @summary Gets branding css.
* @param {*} [options] Override http request option.
* @throws {RequiredError}
*/
getBrandingCss: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
/**
*
* @summary Gets branding css.
* @param {*} [options] Override http request option.
* @throws {RequiredError}
*/
getBrandingCss2: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
/**
*
* @summary Gets branding configuration.
* @param {*} [options] Override http request option.
* @throws {RequiredError}
*/
getBrandingOptions: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
};
/**
* BrandingApi - functional programming interface
* @export
*/
export declare const BrandingApiFp: (configuration?: Configuration) => {
/**
*
* @summary Gets branding css.
* @param {*} [options] Override http request option.
* @throws {RequiredError}
*/
getBrandingCss(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<string>>;
/**
*
* @summary Gets branding css.
* @param {*} [options] Override http request option.
* @throws {RequiredError}
*/
getBrandingCss2(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<string>>;
/**
*
* @summary Gets branding configuration.
* @param {*} [options] Override http request option.
* @throws {RequiredError}
*/
getBrandingOptions(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<BrandingOptions>>;
};
/**
* BrandingApi - factory interface
* @export
*/
export declare const BrandingApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
/**
*
* @summary Gets branding css.
* @param {*} [options] Override http request option.
* @throws {RequiredError}
*/
getBrandingCss(options?: RawAxiosRequestConfig): AxiosPromise<string>;
/**
*
* @summary Gets branding css.
* @param {*} [options] Override http request option.
* @throws {RequiredError}
*/
getBrandingCss2(options?: RawAxiosRequestConfig): AxiosPromise<string>;
/**
*
* @summary Gets branding configuration.
* @param {*} [options] Override http request option.
* @throws {RequiredError}
*/
getBrandingOptions(options?: RawAxiosRequestConfig): AxiosPromise<BrandingOptions>;
};
/**
* BrandingApi - object-oriented interface
* @export
* @class BrandingApi
* @extends {BaseAPI}
*/
export declare class BrandingApi extends BaseAPI {
/**
*
* @summary Gets branding css.
* @param {*} [options] Override http request option.
* @throws {RequiredError}
* @memberof BrandingApi
*/
getBrandingCss(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any>>;
/**
*
* @summary Gets branding css.
* @param {*} [options] Override http request option.
* @throws {RequiredError}
* @memberof BrandingApi
*/
getBrandingCss2(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any>>;
/**
*
* @summary Gets branding configuration.
* @param {*} [options] Override http request option.
* @throws {RequiredError}
* @memberof BrandingApi
*/
getBrandingOptions(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BrandingOptions, any>>;
}