import { ReduxAction, ReduxActionTypes } from "constants/ReduxActionConstants"; export const batchAction = (action: ReduxAction) => ({ type: ReduxActionTypes.BATCHED_UPDATE, payload: action, }); export type BatchAction = ReduxAction>;