UNPKG

tsgammon-core

Version:

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

15 lines 393 B
import { BoardStateNode } from '../BoardStateNode'; import { FIBSCube } from './FIBSCube'; export declare type FIBSState = { player: string; opponent: string; node: BoardStateNode; cube: FIBSCube; matchScore: FIBSScore; }; export declare type FIBSScore = { matchLen: number; playerScore: number; opponentScore: number; }; //# sourceMappingURL=FIBSState.d.ts.map