import { CreateCommentAction, ReadCommentAction, UpdateCommentAction, DeleteCommentAction, ResetCommentAction } from "./comment"; import { CreateContentAction, ReadContentAction, UpdateContentAction, DeleteContentAction } from './content'; import { CreateTagAction, ReadTagAction, UpdateTagAction, DeleteTagAction } from './tag'; export interface NullAction { type: Actions.NULL; } export declare type ActionTypes = NullAction | CreateCommentAction | ReadCommentAction | UpdateCommentAction | DeleteCommentAction | ResetCommentAction | CreateContentAction | ReadContentAction | UpdateContentAction | DeleteContentAction | CreateTagAction | ReadTagAction | UpdateTagAction | DeleteTagAction; export declare enum Actions { NULL = "NULL", CREATE_COMMENT = "CREATE_COMMENT", READ_COMMENT = "READ_COMMENT", UPDATE_COMMENT = "UPDATE_COMMENT", DELETE_COMMENT = "DELETE_COMMENT", RESET_COMMENT = "RESET_COMMENT", CREATE_CONTENT = "CREATE_CONTENT", READ_CONTENT = "READ_CONTENT", UPDATE_CONTENT = "UPDATE_CONTENT", DELETE_CONTENT = "DELETE_CONTENT", CREATE_TAG = "CREATE_TAG", READ_TAG = "READ_TAG", UPDATE_TAG = "UPDATE_TAG", DELETE_TAG = "DELETE_TAG" }