/** * Response shape for ``cron.run``. */ export type CronRunResult = { ok: boolean; ran: boolean; reason?: string; };