export type TicketTaskId = { _id: string; ticketId: string; status: BadgeStatus; subject: string; deadline: string; }; export type BadgeStatus = 'Open' | 'On Verification' | 'Request Cancel' | 'On Progress' | 'Need Confirmation' | 'Closed' | 'Cancel Ticket'; export type TicketCount = { count: number; };