Interface TwingForNode

interface TwingForNode {
    attributes: TwingForNodeAttributes;
    children: TwingForNodeChildren;
    column: number;
    line: number;
    tag: null | string;
    type: "for";
}

Hierarchy (view full)

Properties

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