Add profile

This commit is contained in:
2025-08-22 15:51:32 +03:00
Unverified
parent 803f685180
commit deb02a5e95
25 changed files with 885 additions and 116 deletions
+6
View File
@@ -4,6 +4,11 @@ export interface ErrorResponse {
message: string;
}
export interface Size2D {
x: number;
y: number;
}
// App types
export interface Message {
@@ -12,6 +17,7 @@ export interface Message {
content: string;
is_read: boolean;
timestamp: string;
profile_picture?: string;
}
export interface Messages {