fixed wrong image type
This commit is contained in:
@@ -1,15 +1,12 @@
|
||||
export interface Images {
|
||||
base_url: string;
|
||||
secure_base_url: string;
|
||||
backdrop_sizes: BackdropSizes[];
|
||||
logo_sizes: LogoSizes[];
|
||||
poster_sizes: PosterSizes[];
|
||||
profile_sizes: ProfileSizes[];
|
||||
still_sizes: StillSizes[];
|
||||
export interface ImageConfiguration {
|
||||
id: number,
|
||||
backdrops: null,
|
||||
logos: null,
|
||||
posters: null
|
||||
}
|
||||
|
||||
export interface Configuration {
|
||||
images: Images;
|
||||
images: ImageConfiguration;
|
||||
change_keys: ChangeKeys[];
|
||||
}
|
||||
|
||||
|
||||
@@ -202,3 +202,10 @@ export interface Image {
|
||||
vote_count: number;
|
||||
width: number;
|
||||
}
|
||||
|
||||
export interface Images {
|
||||
id: number,
|
||||
backdrops: Image[],
|
||||
logos: Image[],
|
||||
posters: Image[],
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user