From b9b2dee3ec2cfcf411a4399962f30f756ed6c4d6 Mon Sep 17 00:00:00 2001 From: Mamalizz Date: Fri, 21 Feb 2025 23:11:11 +0330 Subject: [PATCH] added ticket type --- frontend/types/global.d.ts | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/frontend/types/global.d.ts b/frontend/types/global.d.ts index 72a5ca9..a64145c 100644 --- a/frontend/types/global.d.ts +++ b/frontend/types/global.d.ts @@ -119,4 +119,13 @@ declare global { iconClass?: string; onClick?: () => void; }; + + type Ticket = { + id: number; + subject: string; + ticket_category: string; + status: string; + created_at: string; + updated_at: string; + }; }