goban
Version:
[](https://opensource.org/licenses/Apache-2.0) [](https://deepwiki.com/online-go/goban)
7 lines (6 loc) • 307 B
TypeScript
import { AdHocPackedMove, JGOFNumericPlayerColor } from "engine/formats";
/**
* Returns a list of moves such that the board state would be equivalent to `board`.
* @param board The desired board state.
*/
export declare function movesFromBoardState(board: JGOFNumericPlayerColor[][]): AdHocPackedMove[];