UNPKG

@sqb/builder

Version:

Extensible multi-dialect SQL query builder written with TypeScript

6 lines (5 loc) 189 B
import { OperatorType } from '../../enums.js'; import { LogicalOperator } from './logical-operator.js'; export class OpAnd extends LogicalOperator { _operatorType = OperatorType.and; }