Merge updated master branch into discover-endpoint

This commit is contained in:
DerPenz
2023-02-21 11:24:48 +01:00
5 changed files with 232 additions and 0 deletions

View File

@@ -6,6 +6,7 @@ export * from './movies';
export * from './search';
export * from './tv-shows';
export * from './watch-providers';
export * from './people';
export * from './discover';
export interface AuthorDetails {
@@ -197,3 +198,13 @@ export interface Translations {
id: number;
translations: Translation[];
}
export interface Image{
aspect_ratio: number;
file_path: string;
height: number;
iso_639_1: string;
vote_average: number;
vote_count: number;
width: number;
}