ravendb
Version:
RavenDB client for Node.js
17 lines • 593 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.RavenEtlConfiguration = void 0;
const EtlConfiguration_js_1 = require("./EtlConfiguration.js");
class RavenEtlConfiguration extends EtlConfiguration_js_1.EtlConfiguration {
loadRequestTimeoutInSec;
get etlType() {
return "Raven";
}
serialize(conventions) {
const result = super.serialize(conventions);
result.EtlType = this.etlType;
return result;
}
}
exports.RavenEtlConfiguration = RavenEtlConfiguration;
//# sourceMappingURL=RavenEtlConfiguration.js.map