summaryrefslogtreecommitdiff
path: root/frontend/src/redux/actions/all.ts
diff options
context:
space:
mode:
authorJoffrey BION <joffrey.bion@gmail.com>2019-05-03 00:43:11 +0200
committerJoffrey BION <joffrey.bion@gmail.com>2019-05-03 00:43:11 +0200
commitd7f9f2470b972fbdc5b9b0aec2f939f1799968c8 (patch)
treeca3eaf2c90769d1a71c52d24a2fab9e568f18ee6 /frontend/src/redux/actions/all.ts
parentConvert api package to typescript (diff)
downloadseven-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.ts5
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
bgstack15