UNPKG

@alisdigital/types-library

Version:

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

11 lines (10 loc) 412 B
import { IImageModelAttributes } from "../../Base/entities/image.entity"; import { ISeatGroupModelAttributes } from "./seatGroup.entity"; import { IVenueModelAttributes } from "./venue.entity"; export interface ISeatModelAttributes { _id: string; type: string; venue: string | IVenueModelAttributes; files: IImageModelAttributes[]; seatGroupDesigns: (string | ISeatGroupModelAttributes)[]; }