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