Interface TwingForLoopNode

interface TwingForLoopNode {
    attributes: TwingForLoopNodeAttributes;
    children: TwingBaseNodeChildren;
    column: number;
    line: number;
    tag: null | string;
    type: "for_loop";
}

Hierarchy (view full)

Properties

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