Interface TwingDeprecatedNode

interface TwingDeprecatedNode {
    attributes: TwingBaseNodeAttributes;
    children: {
        message: TwingBaseExpressionNode;
    };
    column: number;
    line: number;
    tag: null | string;
    type: "deprecated";
}

Hierarchy (view full)

Properties

children: {
    message: TwingBaseExpressionNode;
}
column: number
line: number
tag: null | string
type: "deprecated"