lml-main
Version:
This is now a mono repository published into many standalone packages.
15 lines (14 loc) • 494 B
TypeScript
export declare const RELOAD_COURIERS = "RELOAD_COURIERS";
export declare const FETCH_COURIERS_BY_STATUS_NOOP = "FETCH_COURIERS_BY_STATUS_NOOP";
export interface ReloadCouriersAction {
type: 'RELOAD_COURIERS';
}
export interface FetchCouriersBystatusNoop {
type: 'FETCH_COURIERS_BY_STATUS_NOOP';
msg?: string;
}
export declare const reloadCouriers: () => ReloadCouriersAction;
export declare const fetchCouriersByStatusNoop: (msg?: string) => {
type: string;
msg: string;
};