UNPKG

chlss

Version:

Open-Source Chess Engine in TypeScript.

6 lines (5 loc) 195 B
import { SquareIndex } from "./square"; export declare const BoardNotation: { toBoardNotation(squareIndex: SquareIndex): string; fromBoardNotation(boardNotation: string): SquareIndex; };