import { Document } from "mongoose"; import { ISeatModelAttributes } from "../entity/seat.entity"; import { IVenueModelInferCreation } from "./venue.dto"; export interface ISeatModelInferCreation extends ISeatModelAttributes, Document { venue: string | IVenueModelInferCreation; }