blob: 45d3ab7af3abac99593e6ba3ef521fa152262c46 (
plain)
1
2
3
4
5
|
import type { GameAction } from './game';
import type { LobbyAction } from './lobby';
import type { PlayerAction } from './players';
export type Action = PlayerAction | LobbyAction | GameAction
|