ts-graphviz
    Preparing search index...

    Interface DotASTNodeBeta

    DotASTNode is a type of AST node that represents a dot in a graph.

    interface DotASTNode {
        children: StatementASTNode[];
        location?: FileRange;
        type: "Dot";
    }

    Hierarchy (View Summary)

    Index

    Properties

    children: StatementASTNode[]
    location?: FileRange

    The start and end location of the AST object.

    type: "Dot"

    Every leaf interface that extends ASTBaseNode must specify a type property.