UNPKG

@sqb/builder

Version:

Extensible multi-dialect SQL query builder written with TypeScript

7 lines (6 loc) 202 B
import { OperatorType } from '../../enums.js'; import { OpILike } from './op-ilike.js'; export class OpNotILike extends OpILike { _operatorType = OperatorType.notILike; _symbol = 'not ilike'; }