import type { ReduxAction } from "@appsmith/constants/ReduxActionConstants";
import { ReflowReduxActionTypes } from "@appsmith/constants/ReduxActionConstants";
import type { ReflowedSpaceMap } from "reflow/reflowTypes";
export const reflowMoveAction = (
payload: ReflowedSpaceMap,
): ReduxAction<ReflowedSpaceMap> => {
return {
type: ReflowReduxActionTypes.REFLOW_MOVE,
payload: payload,
};
export const stopReflowAction = () => {
type: ReflowReduxActionTypes.STOP_REFLOW,