import {
ReduxAction,
ReflowReduxActionTypes,
} from "@appsmith/constants/ReduxActionConstants";
import { 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,