UNPKG

@dasch-swiss/dsp-js

Version:
26 lines 689 B
import { __decorate, __metadata } from "tslib"; import { JsonObject, JsonProperty } from 'json2typescript'; import { ListNode } from './list-node'; /** * A list node. * * @category Model Admin */ let StoredListNode = class StoredListNode extends ListNode { constructor() { super(...arguments); /** * The ID of the enclosing object. */ this.id = ''; } }; __decorate([ JsonProperty('id', String), __metadata("design:type", Object) ], StoredListNode.prototype, "id", void 0); StoredListNode = __decorate([ JsonObject('StoredListNode') ], StoredListNode); export { StoredListNode }; //# sourceMappingURL=stored-list-node.js.map