11 lines
192 B
TypeScript
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;
|
|
};
|