UNPKG

tsgammon-core

Version:

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

11 lines 296 B
/** * 終局状態を示す */ export declare type EOGStatus = { isEndOfGame: boolean; isGammon: boolean; isBackgammon: boolean; calcStake(cubeValue: number): number; }; export declare function eog(status?: Partial<EOGStatus>): EOGStatus; //# sourceMappingURL=EOGStatus.d.ts.map