import { Channel } from "./Channel.js" import { IRCUser } from "./IRCUser.js" import { MatrixUser } from "./MatrixUser.js" export class Server { public name: string // public matrixRooms: Map // public ircChannels: Map // public matrixUsers: Map // public ircUsers: Map public nickToMxid: Map constructor(public config: any) { this.name = this.config.serverName; this.matrixRooms = new Map(); this.ircChannels = new Map(); this.matrixUsers = new Map(); this.ircUsers = new Map(); this.nickToMxid = new Map(); } }