UNPKG

moviedatabase-client

Version:

TheMovieDatabase Node.js client implementation

16 lines (15 loc) 364 B
export interface TVEpisodeTranslationData { name: string; overview: string; } export interface TVEpisodeTranslation { iso_3166_1: string; iso_639_1: string; name: string; english_name: string; data: TVEpisodeTranslationData; } export interface TVEpisodeTranslationsResponse { id: number; translations: [TVEpisodeTranslation]; }