9 lines
386 B
TypeScript
9 lines
386 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';
|
|
|
|
/** Merged store actions */
|
|
export type ACTIONS = COMMENTS_ACTIONS | POST_INFO_ACTIONS | THEME_ACTIONS | THREAD_ACTIONS | USER_ACTIONS;
|