UNPKG

lml-main

Version:

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

9 lines (8 loc) 653 B
import { Store } from 'redux'; import { Observable } from 'rxjs'; import { ActionsObservable, Epic } from 'redux-observable'; import { AppState } from '../../common/reducers'; export declare const postFrequencyAutoAllocation: (action$: ActionsObservable<any>, store: Store<AppState>) => Observable<any>; export declare const postFrequencyAutoAllocationSuccess: (action$: ActionsObservable<any>, store: Store<AppState>) => Observable<any>; export declare const postFrequencyAutoAllocationError: (action$: ActionsObservable<any>, store: Store<AppState>) => Observable<any>; export declare const postFrequencyAutoAllocationEpics: Epic<any, AppState, any>;