2019-11-01 07:11:32 +00:00
|
|
|
import {
|
|
|
|
|
ReduxActionTypes,
|
|
|
|
|
ReduxActionWithoutPayload,
|
|
|
|
|
} from "../constants/ReduxActionConstants";
|
|
|
|
|
|
2019-11-08 11:02:00 +00:00
|
|
|
export const initEditor = (): ReduxActionWithoutPayload => ({
|
2019-11-14 11:17:36 +00:00
|
|
|
type: ReduxActionTypes.INITIALIZE_EDITOR,
|
2019-11-01 07:11:32 +00:00
|
|
|
});
|