8 lines
No EOL
133 B
TypeScript
8 lines
No EOL
133 B
TypeScript
import type { GameAction } from "./actions"
|
|
|
|
export type GameEvent = {
|
|
type: "action"
|
|
action: GameAction
|
|
} | {
|
|
type: "new_round"
|
|
} |