/** * This class contains data of an tactic delete event * @author Eirik Måseidvåg */ import History from '../../History'; import { TacticHistoryDeleteOptions } from './types'; export default class TacticHistoryDelete extends History { /** * The ID of the tactic to be deleted * @public */ readonly tacticId: string; constructor(options: TacticHistoryDeleteOptions); }