lml-main
Version:
This is now a mono repository published into many standalone packages.
10 lines (9 loc) • 687 B
TypeScript
import { Observable } from 'rxjs';
import { ActionsObservable, Epic } from 'redux-observable';
import { Store } from 'redux';
import { RootState } from '../../root/reducers';
import { AllocationType } from '@lml/cosmo-ts-data';
export declare const postAllocationSuccess: (action$: ActionsObservable<any>, store: Store<RootState>) => Observable<any>;
export declare const postAllocationError: (action$: ActionsObservable<any>, store: Store<RootState>) => Observable<any>;
export declare const getAllocationLabel: (allocationType: AllocationType) => "allocated" | "deallocated" | "reallocated" | "tagged" | "untagged";
export declare const postAllocationEpics: Epic<any, RootState, any>;