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