UNPKG

@sqb/builder

Version:

Extensible multi-dialect SQL query builder written with TypeScript

10 lines (9 loc) 287 B
import { OperatorType } from '../../enums.js'; import { OpBetween } from './op-between.js'; export class OpNotBetween extends OpBetween { constructor() { super(...arguments); this._operatorType = OperatorType.notBetween; this._symbol = 'not between'; } }