movie.ts 144 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 export interface MovieInterface { id: number; title: string; poster_path: string | null; vote_average: number; release_date: string; }