AttributeASTPropaties interface defines the properties of an AttributeASTNode.

interface AttributeASTPropaties<T> {
    key: LiteralASTNode<T>;
    location?: FileRange;
    value: LiteralASTNode<string>;
}

Type Parameters

Hierarchy (view full)

Properties

Properties

location?: FileRange

The start and end location of the AST object.

value: LiteralASTNode<string>

Generated using TypeDoc