ts-graphviz
    Preparing search index...

    Interface AttributeListASTNodeBeta

    AttributeListASTNode is a type of AST node that represents a list of attributes.

    interface AttributeListASTNode {
        children: (CommentASTNode | AttributeASTNode<AttributeKey>)[];
        kind: "Graph" | "Node" | "Edge";
        location?: FileRange;
        type: "AttributeList";
    }

    Hierarchy (View Summary)

    Index

    Properties

    kind: "Graph" | "Node" | "Edge"
    location?: FileRange

    The start and end location of the AST object.

    type: "AttributeList"

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