UNPKG

@alisdigital/types-library

Version:

TypeScript type definitions for Papilet ecosystem with session soft delete and event management features

7 lines (6 loc) 293 B
import { Document } from "mongoose"; import { ISeatModelAttributes } from "../entity/seat.entity"; import { IVenueModelInferCreation } from "./venue.dto"; export interface ISeatModelInferCreation extends ISeatModelAttributes, Document<string> { venue: string | IVenueModelInferCreation; }