"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var Query = (function () { function Query(transaction, coll) { this._coll = coll; this._transaction = transaction; } return Query; }()); exports.Query = Query;