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