UNPKG

@dasch-swiss/dsp-js

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