@sqb/builder
Version:
Extensible multi-dialect SQL query builder written with TypeScript
14 lines (13 loc) • 448 B
JavaScript
;
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 {
constructor() {
super(...arguments);
this._operatorType = enums_js_1.OperatorType.notExists;
this._symbol = 'not exists';
}
}
exports.OpNotExists = OpNotExists;