updated showings to use typescript and composition api
This commit is contained in:
parent
4cfaf31ea5
commit
2e55f9a3a3
3 changed files with 97 additions and 61 deletions
|
@ -1,8 +1,10 @@
|
|||
import type { Movie } from "~/types/movie";
|
||||
|
||||
export type Showing = {
|
||||
id: number;
|
||||
owner: number;
|
||||
public: boolean;
|
||||
title: string;
|
||||
movie: Movie;
|
||||
showtime: string;
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue