diff options
author | Joffrey BION <joffrey.bion@gmail.com> | 2019-05-03 00:43:11 +0200 |
---|---|---|
committer | Joffrey BION <joffrey.bion@gmail.com> | 2019-05-03 00:43:11 +0200 |
commit | d7f9f2470b972fbdc5b9b0aec2f939f1799968c8 (patch) | |
tree | ca3eaf2c90769d1a71c52d24a2fab9e568f18ee6 /frontend/src/redux/actions/all.ts | |
parent | Convert api package to typescript (diff) | |
download | seven-wonders-d7f9f2470b972fbdc5b9b0aec2f939f1799968c8.tar.gz seven-wonders-d7f9f2470b972fbdc5b9b0aec2f939f1799968c8.tar.bz2 seven-wonders-d7f9f2470b972fbdc5b9b0aec2f939f1799968c8.zip |
Convert redux actions to typescript
Diffstat (limited to 'frontend/src/redux/actions/all.ts')
-rw-r--r-- | frontend/src/redux/actions/all.ts | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/frontend/src/redux/actions/all.ts b/frontend/src/redux/actions/all.ts new file mode 100644 index 00000000..57d2a443 --- /dev/null +++ b/frontend/src/redux/actions/all.ts @@ -0,0 +1,5 @@ +import { GameAction } from './game'; +import { LobbyAction } from './lobby'; +import { PlayerAction } from './user'; + +export type Action = PlayerAction | LobbyAction | GameAction |