chessgroundxx
Version:
lichess.org chess ui
24 lines • 378 B
JavaScript
export const colors = ["white", "black"];
export const roles = [
"pawn",
"king",
"advisor",
"rook",
"bishop",
"knight",
"cannon",
];
export const files = ["a", "b", "c", "d", "e", "f", "g", "h", "i"];
export const ranks = [
"0",
"1",
"2",
"3",
"4",
"5",
"6",
"7",
"8",
"9",
];
//# sourceMappingURL=types.js.map