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 => { return { type: ReflowReduxActionTypes.REFLOW_MOVE, payload: payload, }; }; export const stopReflowAction = () => { return { type: ReflowReduxActionTypes.STOP_REFLOW, }; };