UNPKG

@dasch-swiss/dsp-js

Version:
22 lines 702 B
import { __decorate, __metadata } from "tslib"; import { JsonObject, JsonProperty } from 'json2typescript'; import { Constants } from '../../../Constants'; import { ReadValue } from './read-value'; /** * @category Model V2 */ let ReadBooleanValue = class ReadBooleanValue extends ReadValue { constructor() { super(...arguments); this.bool = false; } }; __decorate([ JsonProperty(Constants.BooleanValueAsBoolean, Boolean), __metadata("design:type", Object) ], ReadBooleanValue.prototype, "bool", void 0); ReadBooleanValue = __decorate([ JsonObject('ReadBooleanValue') ], ReadBooleanValue); export { ReadBooleanValue }; //# sourceMappingURL=read-boolean-value.js.map