fix warnings for any type

This commit is contained in:
Blake Joynes
2023-04-15 12:16:57 -04:00
parent 5d38a76997
commit 933ebf25a3
6 changed files with 59 additions and 18 deletions

View File

@@ -134,14 +134,14 @@ export interface ContentRatingsResult {
export interface Recommendation {
adult: boolean;
backdrop_path?: any;
backdrop_path?: string;
genre_ids: number[];
id: number;
original_language: string;
original_title: string;
overview: string;
release_date: string;
poster_path?: any;
poster_path?: string;
popularity: number;
title: string;
video: boolean;