8 lines
144 B
TypeScript
8 lines
144 B
TypeScript
import type { Movie } from "~/types/movie";
|
|
|
|
export type Showing = {
|
|
owner: number;
|
|
public: boolean;
|
|
movie: Movie;
|
|
showtime: string;
|
|
};
|