ConceptCreator/app/storage/StoreComponent.js
Sebastian Böckelmann b31f72475a
Some checks failed
E2E Testing / test (push) Failing after 1m31s
Introduce Project Service as interface to persistance of gamemodel
2024-03-20 09:26:52 +01:00

12 lines
395 B
JavaScript

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.StoreComponent = void 0;
class StoreComponent {
constructor(jsonString, fileName, componentType) {
this.jsonString = jsonString;
this.fileName = fileName;
this.componentType = componentType;
}
}
exports.StoreComponent = StoreComponent;
//# sourceMappingURL=StoreComponent.js.map