Interface LineageNodeBase

interface LineageNodeBase {
    absolutePath: string;
    children: LineageEdge[];
    dataFileURL: string;
    distance: number;
    listURL: string;
    parents: LineageEdge[];
    pipelinePath: string;
    properties: any;
    protocol?: LineageItemBase;
    steps?: LineageRunStep[];
}

Properties

absolutePath: string
children: LineageEdge[]
dataFileURL: string
distance: number
listURL: string
parents: LineageEdge[]
pipelinePath: string
properties: any
protocol?: LineageItemBase
steps?: LineageRunStep[]

Generated using TypeDoc