@wcardinal/wcardinal-geditor
Version:
WebGL-based graphic editor, tester and viewer for supervisory systems
14 lines • 634 B
JavaScript
import { __extends } from "tslib";
import { EShapeRuntimeImpl } from "@wcardinal/wcardinal-ui";
import { EShapeChartLineActionRuntime } from "./e-shape-chart-line-action-runtime";
var EShapeChartLineRuntime = /** @class */ (function (_super) {
__extends(EShapeChartLineRuntime, _super);
function EShapeChartLineRuntime(shape) {
var _this = _super.call(this, shape) || this;
_this.actions.push(new EShapeChartLineActionRuntime(shape));
return _this;
}
return EShapeChartLineRuntime;
}(EShapeRuntimeImpl));
export { EShapeChartLineRuntime };
//# sourceMappingURL=e-shape-chart-line-runtime.js.map