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