agenda
Version:
Light weight job scheduler for Node.js
11 lines • 344 B
TypeScript
import { Agenda } from ".";
import { Job } from "../job";
/**
* Save the properties on a job to MongoDB
* @name Agenda#saveJob
* @function
* @param job job to save into MongoDB
* @returns resolves when job is saved or errors
*/
export declare const saveJob: (this: Agenda, job: Job) => Promise<Job>;
//# sourceMappingURL=save-job.d.ts.map