Interface TwingBaseCallNode<Type>

interface TwingBaseCallNode<Type> {
    attributes: TwingBaseNodeAttributes & {
        operatorName: string;
    };
    children: TwingBaseCallNodeChildren;
    column: number;
    line: number;
    tag: null | string;
    type: Type;
}

Type Parameters

  • Type extends "filter" | "function" | "test"

Hierarchy (view full)

Properties

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