UNPKG

@sqb/builder

Version:

Extensible multi-dialect SQL query builder written with TypeScript

10 lines (9 loc) 265 B
import { OperatorType } from '../../enums.js'; import { CompOperator } from './comp-operator.js'; export class OpGte extends CompOperator { _operatorType = OperatorType.gte; _symbol = '>='; constructor(left, right) { super(left, right); } }