UNPKG

@wcardinal/wcardinal-geditor

Version:

WebGL-based graphic editor, tester and viewer for supervisory systems

26 lines 956 B
var EShapeChartTickMinor = /** @class */ (function () { function EShapeChartTickMinor(count) { this.count = count; } EShapeChartTickMinor.prototype.copy = function (source) { this.count = source.count; return this; }; EShapeChartTickMinor.prototype.serialize = function (manager) { return manager.addResource("".concat(this.count)); }; EShapeChartTickMinor.prototype.deserialize = function (target, manager) { var resources = manager.resources; if (0 <= target && target < resources.length) { var parsed = manager.getExtension(target); if (parsed == null) { parsed = JSON.parse(resources[target]); manager.setExtension(target, parsed); } this.count = parsed; } }; return EShapeChartTickMinor; }()); export { EShapeChartTickMinor }; //# sourceMappingURL=e-shape-chart-tick-minor.js.map