UNPKG

@sqb/builder

Version:

Extensible multi-dialect SQL query builder written with TypeScript

9 lines (8 loc) 316 B
import { OperatorType } from '../../enums.js'; import { Serializable } from '../../serializable.js'; import { CompOperator } from './comp-operator.js'; export declare class OpIs extends CompOperator { _operatorType: OperatorType; _symbol: string; constructor(left: string | Serializable, right?: any); }