mirror of
https://github.com/astuto/astuto.git
synced 2025-12-18 12:47:51 +01:00
9 lines
239 B
TypeScript
9 lines
239 B
TypeScript
|
|
export const POST_TOGGLE_EDIT_MODE = 'POST_TOGGLE_EDIT_MODE';
|
||
|
|
|
||
|
|
export interface PostToggleEditMode {
|
||
|
|
type: typeof POST_TOGGLE_EDIT_MODE;
|
||
|
|
}
|
||
|
|
|
||
|
|
export const togglePostEditMode = (): PostToggleEditMode => ({
|
||
|
|
type: POST_TOGGLE_EDIT_MODE,
|
||
|
|
});
|