Merge branch 'main' into QueryParams
This commit is contained in:
commit
731a877c4f
36 changed files with 280 additions and 4 deletions
15
frontend/src/types/movie.ts
Normal file
15
frontend/src/types/movie.ts
Normal 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[]
|
||||
}
|
Reference in a new issue