diff options
Diffstat (limited to 'frontend/src/redux/actions/all.js')
-rw-r--r-- | frontend/src/redux/actions/all.js | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/frontend/src/redux/actions/all.js b/frontend/src/redux/actions/all.js new file mode 100644 index 00000000..45d3ab7a --- /dev/null +++ b/frontend/src/redux/actions/all.js @@ -0,0 +1,5 @@ +import type { GameAction } from './game'; +import type { LobbyAction } from './lobby'; +import type { PlayerAction } from './players'; + +export type Action = PlayerAction | LobbyAction | GameAction |