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