/* generated using openapi-typescript-codegen -- do not edit */ /* istanbul ignore file */ /* tslint:disable */ /* eslint-disable */ /** * Documents the ``cron.status`` response. * * The upstream shape (scheduler health summary from ``context.cron.status()``) * is not fully pinned in the published docs; fields here are best-effort. * Additional fields may be present. */ export type CronStatusResponse = { healthy?: boolean; pendingJobs?: number; runningJobs?: number; nextRunAtMs?: number; lastTickAtMs?: number; };