Merge branch 'master' of github.com:blakejoy/tmdb-ts into feature/multi-search

This commit is contained in:
Alexander B
2023-05-04 21:38:37 +06:00
12 changed files with 282 additions and 81 deletions

View File

@@ -126,6 +126,7 @@ export interface ContentRatings {
}
export interface ContentRatingsResult {
descriptor: unknown[];
iso_3166_1: string;
rating: string;
}
@@ -200,3 +201,10 @@ export interface Image {
vote_count: number;
width: number;
}
export interface Images {
id: number;
backdrops: Image[];
logos: Image[];
posters: Image[];
}