import { Observable } from 'rxjs' import { combineEpics, ActionsObservable } from 'redux-observable' import { Store } from 'redux' import { AddressAction } from '../actions' import { SEARCH_ADDRESS } from '../constants' export const searchAddressSuccess = (action$: ActionsObservable, store: Store) => action$.ofType(SEARCH_ADDRESS.SUCCESS) .map((action: any): any => ({type: 'NULL'}))