import { TechnologyInformation } from './technology'; export interface StageJobInformation extends TechnologyInformation { readonly ancestors: JobAncestor[]; readonly stageId: string; readonly stageName: string; } export interface JobAncestor { readonly id: string; readonly name: string; }