chessops
    Preparing search index...

    Interface Piece

    interface Piece {
        color: "black" | "white";
        promoted?: boolean;
        role: "pawn" | "knight" | "bishop" | "rook" | "queen" | "king";
    }
    Index

    Properties

    Properties

    color: "black" | "white"
    promoted?: boolean
    role: "pawn" | "knight" | "bishop" | "rook" | "queen" | "king"