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