casino/frontend/src/app/feature/game/blackjack/enum/gameState.ts

6 lines
134 B
TypeScript

export enum GameState {
PLAYER_WON = 'PLAYER_WON',
IN_PROGRESS = 'IN_PROGRESS',
PLAYER_LOST = 'PLAYER_LOST',
DRAW = 'DRAW',
}