RBinaryOp: {
    getOperatorInfo<Info = object>(
        node: RBinaryOp<Info>,
    ): undefined | OperatorInformationValue;
    is<Info = object>(
        this: void,
        node: undefined | RNode<Info>,
    ): node is RBinaryOp<Info>;
    name: "RBinaryOp";
}

Helper for working with RBinaryOp AST nodes.

Type declaration