/** * This class contains data of an view connect event * @author Eirik Måseidvåg */ import History from '../../History'; import { ViewHistoryConnectOptions } from './types'; export default class ViewHistoryConnect extends History { /** * The user who connected to the view * @public */ readonly userId: string; /** * The view the user connected to * @public */ readonly viewId: string; constructor(options: ViewHistoryConnectOptions); }