ravendb
Version:
RavenDB client for Node.js
17 lines • 486 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.CounterBatch = void 0;
class CounterBatch {
replyWithAllNodesValues;
documents = [];
fromEtl;
serialize() {
return {
ReplyWithAllNodesValues: this.replyWithAllNodesValues,
Documents: this.documents.map(x => x.serialize()),
FromEtl: this.fromEtl
};
}
}
exports.CounterBatch = CounterBatch;
//# sourceMappingURL=CounterBatch.js.map