PromucFlow_constructor/app/client/src/actions/configsActions.tsx

13 lines
274 B
TypeScript
Raw Normal View History

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