summaryrefslogtreecommitdiff
path: root/sw-ui/src/redux/actions/all.ts
blob: 57d2a4430426f1a83a66e593aa0fe35e4406274b (plain)
1
2
3
4
5
import { GameAction } from './game';
import { LobbyAction } from './lobby';
import { PlayerAction } from './user';

export type Action = PlayerAction | LobbyAction | GameAction
bgstack15