UNPKG

moviedatabase-client

Version:

TheMovieDatabase Node.js client implementation

20 lines (19 loc) 404 B
export interface TVNetwork { id: number; logo_path: string; name: string; origin_country: string; } export interface TVEpisodeGroup { description: string; episode_count: number; group_count: number; id: string; name: string; network: TVNetwork | null; type: number; } export interface TVEpisodeGroupsResponse { id: number; results: [TVEpisodeGroup]; }