ottoman
Version:
Ottoman Couchbase ODM
14 lines • 370 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.BaseQuery = void 0;
/**
* Basic definition of Query class.
* */
class BaseQuery {
constructor(_conditions, _collection) {
this._conditions = _conditions;
this._collection = _collection;
}
}
exports.BaseQuery = BaseQuery;
//# sourceMappingURL=base-query.js.map