twenty-one/shared/game/events.ts

8 lines
No EOL
133 B
TypeScript

import type { GameAction } from "./actions"
export type GameEvent = {
type: "action"
action: GameAction
} | {
type: "new_round"
}