/** * This class contains data of an tactic connect event * @author Eirik Måseidvåg */ import History from '../../History'; import { TacticHistoryConnectOptions } from './types'; export default class TacticHistoryConnect extends History { /** * The user who connected to the tactic * @public */ readonly userId: string; /** * The tactic the user connected to * @public */ readonly tacticId: string; /** * The team to auto connect to if defined * @public */ readonly teamId: string | undefined; /** * The view to auto connect to if defined * @public */ readonly viewId: string | undefined; constructor(options: TacticHistoryConnectOptions); }