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