lml-main
Version:
This is now a mono repository published into many standalone packages.
15 lines (14 loc) • 584 B
TypeScript
import { Observable } from 'rxjs';
import { ActionsObservable, Epic } from 'redux-observable';
import { Store } from 'redux';
import { AppState } from '../../common/reducers';
/**
* Post an allocation to the api
*
* @param jobRefId
* @param courierRefId
* @param user
*/
export declare const postAllocation: (action$: ActionsObservable<any>, store: Store<AppState>) => Observable<any>;
export declare const postDeallocationSuccess: (action$: ActionsObservable<any>, store: Store<AppState>) => Observable<any>;
export declare const postAllocationEpics: Epic<any, AppState, any>;