UNPKG

piskvorky

Version:

Helper functions for tic-tac-toe game.

3 lines (2 loc) 182 B
import { Field, OutOfBoundsField, Position } from './values'; export declare const valueAt: (board: readonly (readonly Field[])[], position: Position) => Field | OutOfBoundsField;