PromucFlow_constructor/app/client/src/actions/configsActions.tsx
2019-11-25 10:37:27 +05:30

13 lines
274 B
TypeScript

import { ReduxActionTypes } from "constants/ReduxActionConstants";
export type EditorConfigIdsType = {
widgetCardsPaneId?: string;
widgetConfigsId?: string;
};
export const fetchEditorConfigs = () => {
return {
type: ReduxActionTypes.FETCH_CONFIGS_INIT,
};
};