UNPKG

chess-easy

Version:

Chess engine that makes writing chessgame easier than writing a calculator

12 lines (11 loc) 229 B
interface PositionIndexes { column: number; row: number; field: string; } export declare class MoveIndexes { from: PositionIndexes; to: PositionIndexes; constructor(from: string, to: string); } export {};