Type Alias OtherBinaryExpression<X>

OtherBinaryExpression<X>: X & {
    left: Expression<X>;
    operator: Exclude<BinaryOperator, "in">;
    right: Expression<X>;
    type: "BinaryExpression";
}

Type Parameters

  • X