| 12345678910111213 |
- "use strict";
- Object.defineProperty(exports, "__esModule", { value: true });
- exports.demoteByEngagements = void 0;
- /**
- * Re-rank candidates by demoting candidates based on engagement events.
- * @param candidates Recommendable entities
- * @param engagementEvents Recorded engagement events
- * @returns Reordered candidates
- */
- function demoteByEngagements(candidates, _engagementEvents) {
- return [...candidates];
- }
- exports.demoteByEngagements = demoteByEngagements;
|