UNPKG

@dasch-swiss/dsp-js

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