import * as ActionTypes from '../actionTypes' import { SetRelayMapAction } from './types' import { RelayMap } from '../../types' export const setRelayMapAction = (payload: RelayMap): SetRelayMapAction => ({ type: ActionTypes.SET_RELAY_MAP, payload })