query.js 183 B

12345678
  1. var Query = (function () {
  2. function Query(transaction, coll) {
  3. this._coll = coll;
  4. this._transaction = transaction;
  5. }
  6. return Query;
  7. }());
  8. export { Query };