agenda
Version:
Light weight job scheduler for Node.js
15 lines • 407 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.repeatAt = void 0;
/**
* Sets a job to repeat at a specific time
* @name Job#repeatAt
* @function
* @param time time to repeat job at (human readable or number)
*/
const repeatAt = function (time) {
this.attrs.repeatAt = time;
return this;
};
exports.repeatAt = repeatAt;
//# sourceMappingURL=repeat-at.js.map
;