UNPKG

@sqb/builder

Version:

Extensible multi-dialect SQL query builder written with TypeScript

10 lines (9 loc) 275 B
import { OperatorType } from '../../enums.js'; import { OpILike } from './op-ilike.js'; export class OpNotILike extends OpILike { constructor() { super(...arguments); this._operatorType = OperatorType.notILike; this._symbol = 'not ilike'; } }