interface LabeledDiffGraph {
    graph: DataflowGraph<DataflowGraphVertexInfo, DataflowGraphEdge>;
    label: string;
    mark?: Set<MermaidMarkdownMark>;
}

Properties

Properties

label: string