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

9 lines
127 B
TypeScript
Raw Normal View History

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