moviedatabase-client
Version:
TheMovieDatabase Node.js client implementation
17 lines (16 loc) • 705 B
TypeScript
import { BaseEndpoint } from './baseEndpoint';
import { TrendingAllResponse, TrendingMovieResponse, TrendingPersonResponse, TrendingTVResponse } from '../interfaces/trending';
export declare class Trending extends BaseEndpoint {
allDaily(): Promise<TrendingAllResponse>;
allWeekly(): Promise<TrendingAllResponse>;
moviesDaily(): Promise<TrendingMovieResponse>;
moviesWeekly(): Promise<TrendingMovieResponse>;
peopleDaily(): Promise<TrendingPersonResponse>;
peopleWeekly(): Promise<TrendingPersonResponse>;
tvDaily(): Promise<TrendingTVResponse>;
tvWeekly(): Promise<TrendingTVResponse>;
private allDry;
private movieDry;
private personDry;
private tvDry;
}