UNPKG

tsgammon-core

Version:

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

11 lines 278 B
import { DicePip } from './Dices'; import { AbsoluteMove } from './AbsoluteMove'; /** * 手番に行ったチェッカープレイを表す */ export declare type Ply = { moves: AbsoluteMove[]; dices: DicePip[]; isRed: boolean; }; //# sourceMappingURL=Ply.d.ts.map