import { TreeStruct, TreeStructAncestor } from '../../shared'; export interface StageJobQuantumDetailsQuantum { readonly id: string; readonly title: string; readonly ancestors: string[] | TreeStructAncestor[]; readonly textContainerId: string; readonly operationsId: string; readonly acceptancesCriteria: string; readonly activeModelVersionId: string; } export interface StageJobQuantumDetailsJob { readonly id: string; readonly title: string; readonly quantums: StageJobQuantumDetailsQuantum[]; } export interface StageJobQuantumDetailsElement { readonly id: string; readonly title: string; readonly jobs: StageJobQuantumDetailsJob[]; } export type StageJobQuantumDetailsTreeStruct = TreeStruct;