hooked up all items on the list settings section
This commit is contained in:
parent
53df349d9f
commit
91173021b2
32 changed files with 578 additions and 178 deletions
|
|
@ -1,5 +1,7 @@
|
|||
import type {MovieCriticScore} from "~/types/movie-critic-score";
|
||||
|
||||
export type Movie = {
|
||||
id: number,
|
||||
id: number
|
||||
title: string
|
||||
year: number
|
||||
imdb_id: string
|
||||
|
|
@ -8,7 +10,7 @@ export type Movie = {
|
|||
plot: string
|
||||
genre: string
|
||||
mpaa_rating: string
|
||||
critic_scores: string
|
||||
critic_scores: Array<MovieCriticScore>
|
||||
poster: string
|
||||
added_by: number
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue