lml-main
Version:
This is now a mono repository published into many standalone packages.
15 lines (14 loc) • 719 B
TypeScript
import { Observable } from 'rxjs';
import { ActionsObservable, Epic } from 'redux-observable';
import { Store } from 'redux';
import { RootState } from '../../root/reducers';
import { JobIncidentCode } from '@lml/cosmo-ts-data';
export declare const fetchJobIncidentCodesSuccess: (action$: ActionsObservable<any>, store: Store<RootState>) => Observable<any>;
export declare const fetchJobIncidentCodesError: (action$: ActionsObservable<any>, store: Store<RootState>) => Observable<any>;
/**
* Make a pretty label for the incident list dropdown
*
* @param code
*/
export declare const mkJobIncidentLabel: (code: JobIncidentCode) => string;
export declare const fetchJobIncidentCodesEpics: Epic<any, RootState, any>;