cletus/node_modules/agenda/lib/job/enable.ts
2025-05-09 15:53:19 -05:00

11 lines
192 B
TypeScript

import { Job } from ".";
/**
* Allows job type to run
* @name Job#enable
* @function
*/
export const enable = function (this: Job): Job {
this.attrs.disabled = false;
return this;
};