UNPKG

@sqb/builder

Version:

Extensible multi-dialect SQL query builder written with TypeScript

14 lines (13 loc) 430 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.OpLt = void 0; const enums_js_1 = require("../../enums.js"); const comp_operator_js_1 = require("./comp-operator.js"); class OpLt extends comp_operator_js_1.CompOperator { constructor(left, right) { super(left, right); this._operatorType = enums_js_1.OperatorType.lt; this._symbol = '<'; } } exports.OpLt = OpLt;