ravendb
Version:
RavenDB client for Node.js
15 lines • 405 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.CollectionStats = void 0;
class CollectionStats {
lastProcessedDocumentEtag;
lastProcessedTombstoneEtag;
documentLag;
tombstoneLag;
constructor() {
this.documentLag = -1;
this.tombstoneLag = -1;
}
}
exports.CollectionStats = CollectionStats;
//# sourceMappingURL=IndexStats.js.map