@sqb/builder
Version:
Extensible multi-dialect SQL query builder written with TypeScript
13 lines (12 loc) • 409 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.OpAnd = void 0;
const enums_js_1 = require("../../enums.js");
const logical_operator_js_1 = require("./logical-operator.js");
class OpAnd extends logical_operator_js_1.LogicalOperator {
constructor() {
super(...arguments);
this._operatorType = enums_js_1.OperatorType.and;
}
}
exports.OpAnd = OpAnd;