import { RoomHistoryDeleteOptions } from './types'; import History from '../../History'; /** * This class contains data of a room delete event * @author Eirik Måseidvåg */ export default class RoomHistoryDelete extends History { /** * The ID of the room to be deleted */ readonly roomId: string; constructor(options: RoomHistoryDeleteOptions); }