UNPKG

@dasch-swiss/dsp-js

Version:
27 lines 877 B
import { __decorate, __metadata } from "tslib"; import { JsonObject, JsonProperty } from 'json2typescript'; import { Constants } from '../../Constants'; import { BaseValue } from './base-value'; /** * @category Internal */ let WriteValue = class WriteValue extends BaseValue { constructor() { super(...arguments); this.hasPermissions = undefined; this.valueHasComment = undefined; } }; __decorate([ JsonProperty(Constants.HasPermissions, String, true), __metadata("design:type", String) ], WriteValue.prototype, "hasPermissions", void 0); __decorate([ JsonProperty(Constants.ValueHasComment, String, true), __metadata("design:type", String) ], WriteValue.prototype, "valueHasComment", void 0); WriteValue = __decorate([ JsonObject('WriteValue') ], WriteValue); export { WriteValue }; //# sourceMappingURL=write-value.js.map