ts-graphviz
    Preparing search index...

    Interface NodeASTNodeBeta

    NodeASTNode is a type of AST node that represents a node in a graph.

    interface NodeASTNode {
        children: (CommentASTNode | AttributeASTNode<AttributeKey>)[];
        id: LiteralASTNode;
        location?: FileRange;
        type: "Node";
    }

    Hierarchy (View Summary)

    Index

    Properties

    The unique identifier of the node.

    location?: FileRange

    The start and end location of the AST object.

    type: "Node"

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