import { RoomHistoryConnectOptions } from './types'; import History from '../../History'; /** * This class contains data of an room connect event * @author Eirik Måseidvåg */ export default class RoomHistoryConnect extends History { /** * The ID of the user who joined the room * @public */ readonly userId: string; /** * The ID of the room the user joined */ readonly roomId: string; constructor(options: RoomHistoryConnectOptions); }