import type { PaginationParams } from '../models'; import type { WatchEpisode, WatchEpisodePromo } from '../models/watch/watch.model'; import { BaseClient } from './base.client'; /** * **Watch Client** * Client used to access the Watch Endpoint: * * See also: [Jikan Documentation](https://docs.api.jikan.moe/) */ export declare class WatchClient extends BaseClient { /** * @returns Recently added episodes */ getWatchRecentEpisodes(): Promise>; /** * @returns Recently Popular episodes */ getWatchPopularEpisodes(): Promise>; /** * @returns Recently added promotional videos */ getWatchRecentPromos(params?: Partial): Promise>; /** * @returns Popular promotional videos */ getWatchPopularPromos(): Promise>; }