lml-main
Version:
This is now a mono repository published into many standalone packages.
13 lines (12 loc) • 589 B
TypeScript
import { RxHttpActionTypes, RxHttpRequestAction } from 'redux-rx-http';
import { JobFlowModel, JobFlowItem } from '@lml/cosmo-ts-data';
export declare const FETCH_JOB_FLOW: RxHttpActionTypes;
export declare const SET_JOB_FLOW = "SET_JOB_FLOW";
export interface SetJobFlowAction {
type: 'SET_JOB_FLOW';
refId: string;
jobFlow: JobFlowModel;
}
export declare type JobFlowAction = SetJobFlowAction;
export declare const fetchJobFlow: (refId: string, args?: any) => RxHttpRequestAction;
export declare const setJobFlow: (refId: string, jobFlow: JobFlowItem[]) => SetJobFlowAction;