UNPKG

chlss

Version:

Open-Source Chess Engine in TypeScript.

9 lines (8 loc) 251 B
import { SquareIndex } from "./square"; interface ICoords { toSquareIndex(x: number, y: number): SquareIndex; toX(squareIndex: SquareIndex): number; toY(squareIndex: SquareIndex): number; } export declare const Coords: ICoords; export {};