UNPKG

@sqb/builder

Version:

Extensible multi-dialect SQL query builder written with TypeScript

11 lines (10 loc) 375 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.OpNotExists = void 0; const enums_js_1 = require("../../enums.js"); const op_exists_js_1 = require("./op-exists.js"); class OpNotExists extends op_exists_js_1.OpExists { _operatorType = enums_js_1.OperatorType.notExists; _symbol = 'not exists'; } exports.OpNotExists = OpNotExists;