UNPKG

lml-main

Version:

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

9 lines (8 loc) 641 B
import { Store } from 'redux'; import { Observable } from 'rxjs'; import { ActionsObservable, Epic } from 'redux-observable'; import { AppState } from '../../common/reducers'; export declare const postAutoAllocationGlobal: (action$: ActionsObservable<any>, store: Store<AppState>) => Observable<any>; export declare const postAutoAllocationGlobalSuccess: (action$: ActionsObservable<any>, store: Store<AppState>) => Observable<any>; export declare const postAutoAllocationGlobalError: (action$: ActionsObservable<any>, store: Store<AppState>) => Observable<any>; export declare const postAutoAllocationGlobalEpics: Epic<any, AppState, any>;