agenda
Version:
Light weight job scheduler for Node.js
10 lines • 395 B
TypeScript
import { Agenda } from ".";
/**
* Starts processing jobs using processJobs() methods, storing an interval ID
* This method will only resolve if a db has been set up beforehand.
* @name Agenda#start
* @function
* @returns resolves if db set beforehand, returns undefined otherwise
*/
export declare const start: (this: Agenda) => Promise<void | unknown>;
//# sourceMappingURL=start.d.ts.map