UNPKG

@sqb/builder

Version:

Extensible multi-dialect SQL query builder written with TypeScript

7 lines (6 loc) 189 B
import { OperatorType } from '../../enums.js'; import { OpLike } from './op-like.js'; export class OpILike extends OpLike { _operatorType = OperatorType.iLike; _symbol = 'ilike'; }