Files
remark42/frontend/app/store/actions.ts
T
2021-03-04 12:02:46 -06:00

16 lines
475 B
TypeScript

import { COMMENTS_ACTIONS } from './comments/types';
import { POST_INFO_ACTIONS } from './post-info/types';
import { THEME_ACTIONS } from './theme/types';
import { THREAD_ACTIONS } from './thread/types';
import { USER_ACTIONS } from './user/types';
import { USER_INFO_ACTIONS } from './user-info/types';
/** Merged store actions */
export type ACTIONS =
| COMMENTS_ACTIONS
| POST_INFO_ACTIONS
| THEME_ACTIONS
| THREAD_ACTIONS
| USER_ACTIONS
| USER_INFO_ACTIONS;