/** * This class contains data of an user share event * @author Eirik Måseidvåg */ import History from '../../History'; import { UserHistoryShareOptions } from './types'; import User from '../../../user/User'; export default class UserHistoryShare extends History { /** * The ID of the user to share user object to * @public */ readonly targetUserId: string; /** * The user object to share with target */ readonly user: User; constructor(options: UserHistoryShareOptions); }