cletus/node_modules/agenda/dist/job/is-running.d.ts
2025-05-09 15:53:19 -05:00

12 lines
No EOL
431 B
TypeScript

import { Job } from ".";
/**
* A job is running if:
* (lastRunAt exists AND lastFinishedAt does not exist)
* OR
* (lastRunAt exists AND lastFinishedAt exists but the lastRunAt is newer [in time] than lastFinishedAt)
* @name Job#isRunning
* @function
* @returns Whether or not job is running at the moment (true for running)
*/
export declare const isRunning: (this: Job) => boolean;
//# sourceMappingURL=is-running.d.ts.map