RFunctionCall: {
    is<Info = object>(
        this: void,
        node: undefined | RNode<Info>,
    ): node is RFunctionCall<Info>;
    isNamed<Info = object>(
        this: void,
        node: undefined | RNode<Info>,
    ): node is RNamedFunctionCall<Info>;
    isUnnamed<Info = object>(
        this: void,
        node: undefined | RNode<Info>,
    ): node is RUnnamedFunctionCall<Info>;
    name: "RFunctionCall";
}

Helper for working with RFunctionCall AST nodes.

Type declaration