@shapediver/sdk.sdtf-v1
Version:
Official sdTF SDK for TypeScript
18 lines • 709 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.SdtfWriteableTypeHint = void 0;
const SdtfBaseWriteableComponent_1 = require("./SdtfBaseWriteableComponent");
class SdtfWriteableTypeHint extends SdtfBaseWriteableComponent_1.SdtfBaseWriteableComponent {
constructor() {
super(...arguments);
this.additionalProperties = {};
}
static clone(orig) {
const clone = new SdtfWriteableTypeHint();
clone.name = orig.name;
clone.additionalProperties = Object.assign({}, orig.additionalProperties);
return clone;
}
}
exports.SdtfWriteableTypeHint = SdtfWriteableTypeHint;
//# sourceMappingURL=SdtfWriteableTypeHint.js.map