goban
Version:
[](https://opensource.org/licenses/Apache-2.0) [](https://deepwiki.com/online-go/goban)
5 lines (4 loc) • 307 B
TypeScript
import { JGOFMove } from "../formats/JGOF";
/** Returns a sorted move string, this is used in our stone removal logic */
export declare function sortMoves(moves: string, width: number, height: number): string;
export declare function sortMoves(moves: JGOFMove[], width: number, height: number): JGOFMove[];