lml-main
Version:
This is now a mono repository published into many standalone packages.
12 lines (11 loc) • 568 B
TypeScript
import { RxHttpRequestAction, RxHttpActionTypes } from 'redux-rx-http';
import { CourierModel } from '@lml/cosmo-ts-data';
export declare const PATCH_COURIER_LABEL: RxHttpActionTypes;
export declare const SET_COURIER_LABEL = "SET_COURIER_LABEL";
export interface SetCourierLabelAction {
type: 'SET_COURIER_LABEL';
refId: string;
label: string;
}
export declare const patchCourierLabel: (courier: CourierModel, label: string, args?: any) => RxHttpRequestAction;
export declare const setCourierLabel: (refId: string, label: string) => SetCourierLabelAction;