import type { Step } from './Step'; export type JobRun = { readonly id: number; title: string; description?: string; session: string; active?: boolean; readonly created_at: string; readonly updated_at: string; steps: Array; };