8 lines
127 B
TypeScript
8 lines
127 B
TypeScript
export type MovieSearchResult = {
|
|
title: string
|
|
year: number
|
|
imdbId: string
|
|
type: string
|
|
poster: string
|
|
}
|
|
|