Skip to content

Latest commit

 

History

History
17 lines (11 loc) · 401 Bytes

chess.ts.bitboard.md

File metadata and controls

17 lines (11 loc) · 401 Bytes

Home > chess.ts > BitBoard

BitBoard type

Signature:

export type BitBoard = {
    w: Record<PieceSymbol, bigint>;
    b: Record<PieceSymbol, bigint>;
};

References: PieceSymbol