moviedatabase-client
Version:
TheMovieDatabase Node.js client implementation
15 lines (14 loc) • 396 B
TypeScript
export interface TVSeasonVideo {
id: string;
iso_639_1: string;
iso_3166_1: string;
key: string;
name: string;
site: string;
size: 360 | 480 | 720 | 1080;
type: 'Trailer' | 'Teaser' | 'Clip' | 'Featurette' | 'Opening Credits' | 'Behind the Scenes' | 'Bloopers' | 'Recap';
}
export interface TVSeasonVideosResponse {
id: number;
results: [TVSeasonVideo];
}