/** * This class contains data of an user update event * @author Eirik Måseidvåg */ import History from '../../History'; import { UserHistoryUpdateOptions } from './types'; import User from '../../../user/User'; export default class UserHistoryUpdate extends History { /** * The ID of the user who was updated * @public */ readonly userId: string; /** * The user changes */ readonly changes: Partial>; constructor(options: UserHistoryUpdateOptions); }