moviedatabase-client
Version:
TheMovieDatabase Node.js client implementation
15 lines (14 loc) • 341 B
TypeScript
export interface MovieVideo {
id: string;
iso_639_1: string;
iso_3166_1: string;
key: string;
name: string;
site: string;
size: number;
type: 'Trailer' | 'Teaser' | 'Clip' | 'Featurette' | 'Behind the Scenes' | 'Bloopers';
}
export interface MovieVideosResponse {
id: number;
results: [MovieVideo];
}