interface TurnCommand {
    args?: any[];
    command: Command;
    cursor?: number;
    move?: QueuedMove;
    skip?: boolean;
    targets?: BattlerIndex[];
}

Properties

args?: any[]
command: Command
cursor?: number
move?: QueuedMove
skip?: boolean
targets?: BattlerIndex[]