@eagleoutice/flowr - v2.13.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>;
        qualifyBaseR?: boolean;
        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>
    qualifyBaseR?: boolean

    show the edge-free base-R qualification (acf as stats::acf); false when the signature database is disabled

    rootGraph: DataflowGraph
    simplified?: boolean

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