Merge branch 'main' into QueryParams

This commit is contained in:
SindreKjelsrud 2023-09-15 08:35:31 +02:00
commit 731a877c4f
36 changed files with 280 additions and 4 deletions

View file

@ -0,0 +1,15 @@
export type movieObject = {
Poster: string
Title: string
Type: string
Year: string
imdbID: string
}
export type modalMovieType = movieObject | null
export type movieResponse = {
Response: string
totalResults: string
Search: movieObject[]
}