Interface TwingTestNode

interface TwingTestNode {
    attributes: TwingBaseNodeAttributes & {
        operatorName: string;
    };
    children: TwingBaseCallNodeChildren;
    column: number;
    line: number;
    tag: null | string;
    type: "test";
}

Hierarchy (view full)

Properties

attributes: TwingBaseNodeAttributes & {
    operatorName: string;
}
column: number
line: number
tag: null | string
type: "test"