22 lines
372 B
TypeScript
22 lines
372 B
TypeScript
export type Movie = {
|
|
_type: "Review";
|
|
tmdbId?: number;
|
|
link?: string;
|
|
author?: {
|
|
_type: "Person";
|
|
name?: string;
|
|
};
|
|
datePublished?: string;
|
|
reviewRating?: {
|
|
bestRating?: number;
|
|
worstRating?: number;
|
|
ratingValue?: number;
|
|
};
|
|
reviewBody?: string;
|
|
itemReviewed?: {
|
|
name?: string;
|
|
};
|
|
keywords?: string[];
|
|
image?: string;
|
|
};
|