chessops
    Preparing search index...

    Interface NormalMove

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

    Properties

    Properties

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