import type { CronRunLogEntry } from './CronRunLogEntry'; /** * Response shape for ``GET cron-runs/``. */ export type CronRunsResponse = { entries: Array; total?: number; limit?: number; offset?: number; };