UNPKG

chess-easy

Version:

Chess engine that makes writing chessgame easier than writing a calculator

13 lines (12 loc) 184 B
export declare enum ChessPieces { PAWN = 0, BISHOP = 1, KNIGHT = 2, ROOK = 3, QUEEN = 4, KING = 5 } export declare enum Colors { WHITE = 0, BLACK = 1 }