movie-night-web/app/types/movie-search-results.ts

8 lines
127 B
TypeScript

export type MovieSearchResult = {
title: string
year: number
imdbId: string
type: string
poster: string
}