interface RaffleTicket { /** * Int presentation of the ticket */ id: number; /** * String presentation of the ticket */ s: string; } export { RaffleTicket };