lml-main
Version:
This is now a mono repository published into many standalone packages.
11 lines (10 loc) • 406 B
TypeScript
import * as Actions from '../actions';
import { JobStatusModel } from '@lml/cosmo-ts-data';
/**
* Map of refId to courier location
*/
export interface CourierJobsState {
[coureirRefId: string]: JobStatusModel[];
}
export declare const initialCourierJobsState: CourierJobsState;
export declare const courierJobsReducer: (state: CourierJobsState, action: Actions.CourierApiAction) => CourierJobsState;