lml-main
Version:
This is now a mono repository published into many standalone packages.
19 lines • 528 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.SET_JOB_DELAY = 'SET_JOB_DELAY';
exports.SET_JOB_DELAY_BATCH = 'SET_JOB_DELAY_BATCH';
/**
* @param refId
* @param delay
*/
exports.setJobDelay = function (refId, delay) {
return ({ type: exports.SET_JOB_DELAY, refId: refId, delay: delay });
};
/**
* @param refId
* @param values
*/
exports.setJobDelayBatch = function (values) {
return ({ type: exports.SET_JOB_DELAY_BATCH, values: values });
};
//# sourceMappingURL=delay.js.map