UNPKG

@toutix/whitelabel

Version:

Toutix whitelabel React container components

17 lines 490 B
import { IEventTicketCategory } from "@/app/dashboard/models/EventTicketCategory"; import { IEventV2 } from "@/app/dashboard/models/Event"; export interface ITicket { id: string; event: IEventV2; price: number; currency: string; qrCode: string; ticketCategory: IEventTicketCategory; createdAt: string; pdfFilePath: string; seatId?: string; } export interface IResaleTicket extends ITicket { resalePrice: string; } //# sourceMappingURL=Ticket.d.ts.map