added ticket type

This commit is contained in:
Mamalizz
2025-02-21 23:11:11 +03:30
parent 6304aaed6f
commit b9b2dee3ec
+9
View File
@@ -119,4 +119,13 @@ declare global {
iconClass?: string; iconClass?: string;
onClick?: () => void; onClick?: () => void;
}; };
type Ticket = {
id: number;
subject: string;
ticket_category: string;
status: string;
created_at: string;
updated_at: string;
};
} }