added ticket type
This commit is contained in:
Vendored
+9
@@ -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;
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user