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