/** * This class contains data of an user presentation event * @author Eirik Måseidvåg */ import History from '../../History'; import { UserHistoryPresentationOptions } from './types'; export default class UserHistoryPresentation extends History { /** * The ID of the user who was updated * @public */ readonly userId: string; /** * Determines weather or not the user is presenting */ readonly isPresenting: boolean; constructor(options: UserHistoryPresentationOptions); }