lml-main
Version:
This is now a mono repository published into many standalone packages.
12 lines (11 loc) • 513 B
TypeScript
export declare const RELOAD_COURIER_LOCATIONS = "RELOAD_COURIER_LOCATIONS";
export declare const COURIER_HAS_NO_LOCATION = "COURIER_HAS_NO_LOCATION";
export interface ReloadCourierLocationsAction {
type: 'RELOAD_COURIER_LOCATIONS';
}
export interface CourierHasNoLocationAction {
type: 'COURIER_HAS_NO_LOCATION';
refId: string;
}
export declare const reloadCourierLocations: () => ReloadCourierLocationsAction;
export declare const courierHasNoLocation: (refId: string) => CourierHasNoLocationAction;