UNPKG

lml-main

Version:

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

9 lines (8 loc) 620 B
import { Observable } from 'rxjs'; import { RootState } from '../../root/reducers'; import { ActionsObservable, Epic } from 'redux-observable'; import { Store } from 'redux'; export declare const getLocationByIdSuccess: (action$: ActionsObservable<any>, store: Store<RootState>) => Observable<any>; export declare const getLocationByIdBatchSuccess: (action$: ActionsObservable<any>, store: Store<RootState>) => Observable<any>; export declare const getLocationByIdError: (action$: ActionsObservable<any>, store: Store<RootState>) => Observable<any>; export declare const getLocationByIdEpics: Epic<any, RootState, any>;