UNPKG

@ffxiv-teamcraft/simulator

Version:
8 lines (7 loc) 344 B
import { Simulation } from '../../simulation/simulation'; import { GeneralAction } from './general-action'; import { ActionType } from './action-type'; export declare abstract class QualityAction extends GeneralAction { getType(): ActionType; execute(simulation: Simulation, safe?: boolean, skipStackAddition?: boolean): void; }