Interface TwingArrowFunctionNode

interface TwingArrowFunctionNode {
    attributes: TwingBaseNodeAttributes;
    children: {
        body: TwingBaseExpressionNode;
        names: TwingBaseNode<any, any, Record<string, TwingAssignmentNode>>;
    };
    column: number;
    line: number;
    tag: null | string;
    type: "arrow_function";
}

Hierarchy (view full)

Properties

children: {
    body: TwingBaseExpressionNode;
    names: TwingBaseNode<any, any, Record<string, TwingAssignmentNode>>;
}
column: number
line: number
tag: null | string
type: "arrow_function"