@configurator/ravendb
Version:
RavenDB client for Node.js
17 lines • 614 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.serializeTransformation = exports.Transformation = void 0;
class Transformation {
}
exports.Transformation = Transformation;
function serializeTransformation(transformation) {
return {
Name: transformation.name,
Disabled: transformation.disabled,
Collections: transformation.collections,
ApplyToAllDocuments: transformation.applyToAllDocuments,
Script: transformation.script
};
}
exports.serializeTransformation = serializeTransformation;
//# sourceMappingURL=Transformation.js.map