class BinaryExpression extends BinaryExpressionBase<T>import { BinaryExpression } from "https://dotland.deno.dev/x/ts_morph@20.0.0/ts_morph.d.ts"; Type ParametersoptionalT extends ts.BinaryExpression = ts.BinaryExpressionMethodsgetLeft(): ExpressionGets the left side of the binary expression. getOperatorToken(): Node<ts.BinaryOperatorToken>Gets the operator token of the binary expression. getRight(): ExpressionGets the right side of the binary expression.