@eagleoutice/flowr - v2.10.1
    Preparing search index...

    Interface MermaidGraph

    Internal representation of a mermaid graph in flowR

    interface MermaidGraph {
        edgeLines: string[];
        includeEnvironments: boolean;
        mark: ReadonlySet<MermaidMarkdownMark> | undefined;
        markStyle: MermaidMarkStyle;
        nodeLines: string[];
        presentEdges: Set<string>;
        presentVertices: Set<string>;
        rootGraph: DataflowGraph;
        simplified?: boolean;
    }
    Index

    Properties

    edgeLines: string[]
    includeEnvironments: boolean
    mark: ReadonlySet<MermaidMarkdownMark> | undefined
    markStyle: MermaidMarkStyle
    nodeLines: string[]
    presentEdges: Set<string>

    in the form of from->to because I am lazy, see encodeEdge

    presentVertices: Set<string>
    rootGraph: DataflowGraph
    simplified?: boolean

    if given, the dataflow graph will only focus on the "important" parts