ts-graphviz
    Preparing search index...

    Interface AttributeASTNode<T>Beta

    AttributeASTNode is a type of AST node that represents an attribute.

    interface AttributeASTNode<T extends AttributeKey = AttributeKey> {
        children: never[];
        key: LiteralASTNode<T>;
        location?: FileRange;
        type: "Attribute";
        value: LiteralASTNode;
    }

    Type Parameters

    Hierarchy (View Summary)

    Index

    Properties

    children: never[]
    location?: FileRange

    The start and end location of the AST object.

    type: "Attribute"

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