import Spotify from "../Spotify"; import { ShowsEpisodesResponse, ShowsMultipleShowsResponse, ShowsSingleShowResponse } from "../typings/res/shows"; import { SearchLimit, SearchMarket, SearchOffset } from "../typings/search"; export default class Shows { private static readonly baseURL; private client; constructor(client: Spotify); get(ids: string, options?: { market?: SearchMarket; }): Promise; get(ids: string[], options?: { market?: SearchMarket; }): Promise; episodes(id: string, options?: { market?: SearchMarket; limit?: SearchLimit; offset?: SearchOffset; }): Promise; }