query.js 265 B

12345678910
  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", { value: true });
  3. var Query = (function () {
  4. function Query(transaction, coll) {
  5. this._coll = coll;
  6. this._transaction = transaction;
  7. }
  8. return Query;
  9. }());
  10. exports.Query = Query;