lml-main
Version:
This is now a mono repository published into many standalone packages.
14 lines (13 loc) • 461 B
TypeScript
import { Dispatch } from 'redux';
import { JobModel } from '@lml/cosmo-ts-data';
export declare const showAllocationModal: (jobRefId?: string) => (dispatch: Dispatch<any>, getState: () => any) => void;
/**
* NOTE: the deallocation modal is also the reallocation modal
* You can choose between one or the other
* @param job
*/
export declare const showDeallocationModal: (job: JobModel) => {
type: string;
modalType: string;
modalProps: any;
};