lml-main
Version:
This is now a mono repository published into many standalone packages.
8 lines (7 loc) • 470 B
TypeScript
import { Observable } from 'rxjs';
import { Store } from 'redux';
import { ActionsObservable, Epic } from 'redux-observable';
import { RootState } from '../../root';
export declare const fetchPlacesSuccess: (action$: ActionsObservable<any>, store: Store<RootState>) => Observable<any>;
export declare const fetchPlacesError: (action$: ActionsObservable<any>, store: Store<RootState>) => Observable<any>;
export declare const fetchPlacesEpics: Epic<any, RootState, any>;