@uwdata/mosaic-sql
Version:
SQL query construction and analysis.
21 lines • 664 B
TypeScript
import { ExprNode } from './node.js';
export declare class BinaryOpNode extends ExprNode {
/** The operator type. */
readonly op: string;
/** The left input expression. */
readonly left: ExprNode;
/** The right input expression. */
readonly right: ExprNode;
/**
* Instantiate a binary operator node.
* @param op The operator type.
* @param left The left input expression.
* @param right The right input expression.
*/
constructor(op: string, left: ExprNode, right: ExprNode);
/**
* Generate a SQL query string for this node.
*/
toString(): string;
}
//# sourceMappingURL=binary-op.d.ts.map