mirror of
https://github.com/astuto/astuto.git
synced 2025-12-16 03:37:56 +01:00
14 lines
454 B
TypeScript
14 lines
454 B
TypeScript
|
|
import IPostStatusChange from "../../interfaces/IPostStatusChange";
|
||
|
|
|
||
|
|
export const POST_STATUS_CHANGE_SUBMITTED = 'POST_STATUS_CHANGE_SUBMITTED';
|
||
|
|
export interface PostStatusChangeSubmitted {
|
||
|
|
type: typeof POST_STATUS_CHANGE_SUBMITTED;
|
||
|
|
postStatusChange: IPostStatusChange;
|
||
|
|
}
|
||
|
|
|
||
|
|
export const postStatusChangeSubmitted = (
|
||
|
|
postStatusChange: IPostStatusChange
|
||
|
|
): PostStatusChangeSubmitted => ({
|
||
|
|
type: POST_STATUS_CHANGE_SUBMITTED,
|
||
|
|
postStatusChange,
|
||
|
|
});
|