@dasch-swiss/dsp-js
Version:
TypeScript client library for DSP-API
19 lines • 480 B
JavaScript
import { __decorate, __metadata } from "tslib";
import { JsonObject, JsonProperty } from 'json2typescript';
/**
* @category Internal
*/
let BaseValue = class BaseValue {
constructor() {
this.type = '';
}
};
__decorate([
JsonProperty('@type', String),
__metadata("design:type", Object)
], BaseValue.prototype, "type", void 0);
BaseValue = __decorate([
JsonObject('BaseValue')
], BaseValue);
export { BaseValue };
//# sourceMappingURL=base-value.js.map