import { HubHistoryRoomLeaveOptions } from './types'; import History from '../../History'; /** * This class contains data of a room leave event * @author Eirik Måseidvåg */ export default class HubHistoryRoomLeave extends History { /** * The ID of the room the user left */ readonly roomId: string; constructor(options: HubHistoryRoomLeaveOptions); }