UNPKG

@nodots-llc/backgammon-types

Version:
19 lines 736 B
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