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