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