2019-11-25 05:07:27 +00:00
|
|
|
import { ReduxActionTypes } from "constants/ReduxActionConstants";
|
2019-10-21 11:40:24 +00:00
|
|
|
|
|
|
|
|
export type EditorConfigIdsType = {
|
|
|
|
|
widgetCardsPaneId?: string;
|
|
|
|
|
widgetConfigsId?: string;
|
|
|
|
|
};
|
|
|
|
|
|
2019-11-22 12:15:33 +00:00
|
|
|
export const fetchEditorConfigs = () => {
|
2019-10-21 11:40:24 +00:00
|
|
|
return {
|
|
|
|
|
type: ReduxActionTypes.FETCH_CONFIGS_INIT,
|
|
|
|
|
};
|
|
|
|
|
};
|