/** * Built-in cron handlers. * @module trellis/plugins/cron/handlers */ import type { CronJobRecord, CronHandlerContext } from './types.js'; export type CronHandler = (job: CronJobRecord, ctx: CronHandlerContext) => Promise | unknown; export declare function createBuiltinHandlers(): Record; //# sourceMappingURL=handlers.d.ts.map