UNPKG

lml-main

Version:

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

9 lines (8 loc) 625 B
import { Observable } from 'rxjs'; import { ActionsObservable, Epic } from 'redux-observable'; import { Store } from 'redux'; import { RootState } from '../../root/reducers'; export declare const fetchCourierByIdSuccess: (action$: ActionsObservable<any>, store: Store<RootState>) => Observable<any>; export declare const fetchCouriersByIdBatchSuccess: (action$: ActionsObservable<any>, store: Store<RootState>) => Observable<any>; export declare const fetchCourierByIdError: (action$: ActionsObservable<any>, store: Store<RootState>) => Observable<any>; export declare const fetchCourierByIdEpics: Epic<any, RootState, any>;