UNPKG

ravendb

Version:
18 lines 485 B
export class Transformation { name; disabled; collections; applyToAllDocuments; script; documentIdPostfix; } export function serializeTransformation(transformation) { return { Name: transformation.name, Disabled: transformation.disabled, Collections: transformation.collections, ApplyToAllDocuments: transformation.applyToAllDocuments, Script: transformation.script }; } //# sourceMappingURL=Transformation.js.map