lml-main
Version:
This is now a mono repository published into many standalone packages.
16 lines • 596 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.SET_SMART_MATCHES = 'SET_SMART_MATCHES';
exports.SET_SMART_MATCHES_BATCH = 'SET_SMART_MATCHES_BATCH';
exports.setSmartMatches = function (refId, scrMatches) {
return ({ type: exports.SET_SMART_MATCHES, refId: refId, scrMatches: scrMatches });
};
/**
* Set a map of job id to smart matches in the state
*
* @param matches
*/
exports.setSmartMatchesBatch = function (scrMatches) {
return ({ type: exports.SET_SMART_MATCHES_BATCH, scrMatches: scrMatches });
};
//# sourceMappingURL=smart-matches.js.map