export interface ChatChannel { name: string; type: 'SERVER' | 'DM' | 'PARTY' | 'GAC'; unreadMessages: number; }