/** * Audius API * * The version of the OpenAPI document: 1.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import * as runtime from '../runtime'; import type { BestSellingResponse } from '../models'; export interface GetBestSellingRequest { offset?: number; limit?: number; userId?: string; type?: GetBestSellingTypeEnum; } /** * */ export declare class ExploreApi extends runtime.BaseAPI { /** * @hidden * Get best selling tracks and/or albums with related entities * Get best selling tracks and playlists with related entities */ getBestSellingRaw(params: GetBestSellingRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise>; /** * Get best selling tracks and/or albums with related entities * Get best selling tracks and playlists with related entities */ getBestSelling(params?: GetBestSellingRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise; } /** * @export */ export declare const GetBestSellingTypeEnum: { readonly All: "all"; readonly Track: "track"; readonly Album: "album"; }; export type GetBestSellingTypeEnum = typeof GetBestSellingTypeEnum[keyof typeof GetBestSellingTypeEnum];