//#region src/modules/crons/types.d.ts interface Cron { name: string; running: boolean; lastRun?: Date; nextRun?: Date; } type InputCron = Omit; //#endregion //#region src/modules/crons/methods.d.ts declare function getAllCrons(): Promise; declare function getCron(cronOrName: Cron | string): Promise; declare function updateCron(cron: InputCron & { name: string; }): Promise; declare function forceCron(cronOrName: Cron | string): Promise; //#endregion export { type Cron, type InputCron, forceCron, getAllCrons, getCron, updateCron }; //# sourceMappingURL=crons.d.mts.map