Interface TwingWithNode

interface TwingWithNode {
    attributes: TwingWithNodeAttributes;
    children: TwingWithNodeChildren;
    column: number;
    line: number;
    tag: null | string;
    type: "with";
}

Hierarchy (view full)

Properties

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