ts-graphviz
    Preparing search index...

    Interface NodeRefGroupASTNodeBeta

    NodeRefGroupASTNode is a type of AST node that represents a group of nodes referenced together.

    interface NodeRefGroupASTNode {
        children: NodeRefASTNode[];
        location?: FileRange;
        type: "NodeRefGroup";
    }

    Hierarchy (View Summary)

    Index

    Properties

    children: NodeRefASTNode[]
    location?: FileRange

    The start and end location of the AST object.

    type: "NodeRefGroup"

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