UNPKG

tsgammon-core

Version:

A Backgammon library for Typescript, formerly developed as a part of tsgammon-ui

17 lines (14 loc) 328 B
import { BoardStateNode } from '../BoardStateNode' import { FIBSCube } from './FIBSCube' export type FIBSState = { player: string opponent: string node: BoardStateNode cube: FIBSCube matchScore: FIBSScore } export type FIBSScore = { matchLen: number playerScore: number opponentScore: number }