UNPKG

@ffxiv-teamcraft/simulator

Version:
8 lines (7 loc) 300 B
import { Simulation } from '../../simulation/simulation'; import { GeneralAction } from './general-action'; import { ActionType } from './action-type'; export declare abstract class ProgressAction extends GeneralAction { getType(): ActionType; execute(simulation: Simulation): void; }