Created
August 31, 2021 16:20
-
-
Save HenryKun55/6acef511770333a75b2d728a42cd18eb to your computer and use it in GitHub Desktop.
Movie Typed ( TMDB ) 2021-08-31
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export type IMovieLatest = { | |
adult: boolean | |
backdrop_path: null | |
belongs_to_collection: null | |
budget: number | |
genres: IGenre[] | |
homepage: string | |
id: number | |
imdb_id: string | |
original_language: string | |
original_title: string | |
overview: string | |
popularity: number | |
poster_path: string | null | |
production_companies: IProductionCompany[] | null | |
production_countries: [] | |
release_date: string | |
revenue: number | |
runtime: number | |
spoken_languages: [] | |
status: string | |
tagline: string | null | |
title: string | |
video: boolean | |
vote_average: number | |
vote_count: number | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment