lml-main
Version:
This is now a mono repository published into many standalone packages.
12 lines (11 loc) • 576 B
TypeScript
import { RxHttpRequestAction, RxHttpActionTypes } from 'redux-rx-http';
import { JobStatusModel } from '@lml/cosmo-ts-data';
export declare const FETCH_COURIER_JOBS: RxHttpActionTypes;
export declare const SET_COURIER_JOBS = "SET_COURIER_JOBS";
export interface SetCourierJobsAction {
type: 'SET_COURIER_JOBS';
refId: string;
jobs: JobStatusModel[];
}
export declare const fetchCourierJobs: (refId: string, showData?: string, args?: any) => RxHttpRequestAction;
export declare const setCourierJobs: (refId: string, jobs: JobStatusModel[]) => SetCourierJobsAction;