trellis
Version:
Agentic State Engine — event-sourced causal graph with branching, decision traces, and realtime sync for AI-native applications
8 lines • 364 B
TypeScript
/**
* 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> | unknown;
export declare function createBuiltinHandlers(): Record<string, CronHandler>;
//# sourceMappingURL=handlers.d.ts.map