UNPKG

lml-main

Version:

This is now a mono repository published into many standalone packages.

13 lines (12 loc) 445 B
import * as Actions from '../actions'; import { CourierActionModel } from '@lml/cosmo-ts-data'; /** * Map of refId to courier location */ export interface CourierActionState { byJobId: { [refId: string]: CourierActionModel[]; }; } export declare const initialCourierActionState: CourierActionState; export declare const courierActionReducer: (state: CourierActionState, action: Actions.CourierApiAction) => CourierActionState;