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