feat: Implement chat module in sidebar
This commit is contained in:
@@ -8,6 +8,7 @@ export interface User {
|
||||
avatar: string;
|
||||
online: boolean;
|
||||
lastSeen?: string;
|
||||
serviceType?: 'taxi' | 'restaurant' | 'hotel' | 'guide' | 'politur' | 'support';
|
||||
}
|
||||
|
||||
export interface Message {
|
||||
@@ -32,6 +33,7 @@ export interface Chat {
|
||||
avatar?: string;
|
||||
online?: boolean;
|
||||
lastActivity: string;
|
||||
serviceType?: 'taxi' | 'restaurant' | 'hotel' | 'guide' | 'politur' | 'support';
|
||||
}
|
||||
|
||||
class ChatApiService {
|
||||
|
||||
Reference in New Issue
Block a user