@nodots-llc/backgammon-types
Version:
Type definitions for Nodots Backgammon
19 lines • 736 B
TypeScript
import { PlayerClass, BackgammonPlayerInactive, BackgammonPlayerMoving, BackgammonPlayerRolling, BackgammonPlayerRolledForStart, BackgammonPlayerRollingForStart } from './player';
export type Players = [PlayerClass, PlayerClass];
export type BackgammonPlayersRollingForStartTuple = [
BackgammonPlayerRollingForStart,
BackgammonPlayerRollingForStart
];
export type BackgammonPlayersRolledForStartTuple = [
BackgammonPlayerRolledForStart,
BackgammonPlayerRolledForStart
];
export type BackgammonPlayersRollingTuple = [
BackgammonPlayerRolling,
BackgammonPlayerInactive
];
export type BackgammonPlayersMovingTuple = [
BackgammonPlayerMoving,
BackgammonPlayerInactive
];
//# sourceMappingURL=players.d.ts.map