import type { CronDeliveryModeEnum } from './CronDeliveryModeEnum'; /** * Delivery target for a cron run's announce/webhook output. */ export type CronDelivery = { mode: CronDeliveryModeEnum; channel?: string; to?: string; threadId?: string; accountId?: string; bestEffort?: boolean; };