/** * This class contains data of an tactic update event * @author Eirik Måseidvåg */ import History from '../../History'; import { TacticHistoryUpdateOptions } from './types'; import Tactic from '../../../tactic/Tactic'; export default class TacticHistoryUpdate extends History { /** * The ID of the tactic to be updated * @public */ readonly tacticId: string; /** * The tactic changes * @public */ readonly changes: Partial>; constructor(options: TacticHistoryUpdateOptions); }