Interface TwingCommentNode

interface TwingCommentNode {
    attributes: TwingCommentNodeAttributes;
    children: TwingBaseNodeChildren;
    column: number;
    line: number;
    tag: null | string;
    type: "comment";
}

Hierarchy (view full)

Properties

column: number
line: number
tag: null | string
type: "comment"