updated showings to use typescript and composition api

This commit is contained in:
Edward Tirado Jr 2025-04-18 18:47:57 -05:00
parent 4cfaf31ea5
commit 2e55f9a3a3
3 changed files with 97 additions and 61 deletions

View file

@ -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;
};