mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-10 10:12:45 +00:00
Co-authored-by: Selis <12716288+ItsSelis@users.noreply.github.com> Co-authored-by: Kashargul <144968721+Kashargul@users.noreply.github.com>
14 lines
455 B
TypeScript
14 lines
455 B
TypeScript
/**
|
|
* @file
|
|
* @copyright 2020 Aleksej Komarov
|
|
* @license MIT
|
|
*/
|
|
|
|
import { createAction } from 'common/redux';
|
|
|
|
export const roundRestarted = createAction('roundrestart');
|
|
export const connectionLost = createAction('game/connectionLost');
|
|
export const connectionRestored = createAction('game/connectionRestored');
|
|
export const dismissWarning = createAction('game/dismissWarning');
|
|
export const updateExportData = createAction('game/updateExportData');
|