updates types and add watch providers

This commit is contained in:
Blake Joynes
2024-06-09 15:53:28 -04:00
parent 9ac3da7321
commit 8df7fe2f2a
29 changed files with 1274 additions and 406 deletions

View File

@@ -2,16 +2,13 @@ import { LanguageOption, Movie } from '.';
export interface Collection {
id: number;
backdrop_path: string;
name: string;
poster_path: string;
adult: boolean;
original_language: string;
original_name: string;
overview: string;
poster_path: string;
backdrop_path: string;
}
export interface DetailedCollection extends Collection {
export interface CollectionDetails extends Collection {
parts: Movie[];
}