Skip to content

Instantly share code, notes, and snippets.

@HenryKun55
Created August 31, 2021 16:20
Show Gist options
  • Save HenryKun55/6acef511770333a75b2d728a42cd18eb to your computer and use it in GitHub Desktop.
Save HenryKun55/6acef511770333a75b2d728a42cd18eb to your computer and use it in GitHub Desktop.
Movie Typed ( TMDB ) 2021-08-31
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