Interface TwingAssignmentNode

interface TwingAssignmentNode {
    attributes: TwingAssignmentNodeAttributes;
    children: TwingBaseNodeChildren;
    column: number;
    line: number;
    tag: null | string;
    type: "assignment";
}

Hierarchy (view full)

Properties

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