Interface NormalMove

interface NormalMove {
    from: number;
    promotion?:
        | "pawn"
        | "knight"
        | "bishop"
        | "rook"
        | "queen"
        | "king";
    to: number;
}

Properties

Properties

from: number
promotion?:
    | "pawn"
    | "knight"
    | "bishop"
    | "rook"
    | "queen"
    | "king"
to: number