13 lines
274 B
TypeScript
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,
|
|
};
|
|
};
|