lml-main
Version:
This is now a mono repository published into many standalone packages.
15 lines (14 loc) • 544 B
TypeScript
import { Dispatch } from 'redux';
import { AppState } from '../../common/reducers';
import { CourierModel } from '@lml/cosmo-ts-data';
export declare const showCourierDetailsModal: (refId?: string) => (dispatch: Dispatch<any>, getState: () => AppState) => void;
export declare const showCourierChangeFrequencyModal: (courier: CourierModel) => {
type: string;
modalType: string;
modalProps: any;
};
export declare const showCourierActionModal: (jobRefId: string) => {
type: string;
modalType: string;
modalProps: any;
};