change and add into components, widgets and pages

This commit is contained in:
LathanDevers
2026-07-30 14:08:49 +02:00
parent ec900efe3a
commit 057aa628a3
39 changed files with 1620 additions and 1062 deletions
+13
View File
@@ -0,0 +1,13 @@
export interface TicketMessage {
id: string;
content: string;
created: string;
expand?: {
author?: {
id?: string;
name?: string;
email?: string;
avatar?: string;
};
};
}