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