UNPKG

lml-main

Version:

This is now a mono repository published into many standalone packages.

10 lines (9 loc) 705 B
import { Observable } from 'rxjs'; import { ActionsObservable, Epic } from 'redux-observable'; import { Store } from 'redux'; import { AppState } from '../../common/reducers'; import { CourierHasNoLocationAction } from '../../couriers/actions/locations'; import { UpdateMarkersAction } from '../../mapping/actions/markers'; export declare const updateCourierMarker: (action$: ActionsObservable<any>, store: Store<AppState>) => Observable<UpdateMarkersAction | CourierHasNoLocationAction>; export declare const updateCourierMarkersBatch: (action$: ActionsObservable<any>, store: Store<AppState>) => Observable<UpdateMarkersAction>; export declare const updateCourierMarkersEpics: Epic<any, AppState, any>;