From d7f9f2470b972fbdc5b9b0aec2f939f1799968c8 Mon Sep 17 00:00:00 2001 From: Joffrey BION Date: Fri, 3 May 2019 00:43:11 +0200 Subject: Convert redux actions to typescript --- frontend/src/redux/actions/all.ts | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 frontend/src/redux/actions/all.ts (limited to 'frontend/src/redux/actions/all.ts') 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 -- cgit