UNPKG

goban

Version:

[![License: Apache-2.0](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0) [![Ask DeepWiki](https://deepwiki.com/badge.svg)](https://deepwiki.com/online-go/goban)

5 lines (4 loc) 307 B
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[];