UNPKG

@wcardinal/wcardinal-geditor

Version:

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

20 lines 1.01 kB
import { __extends } from "tslib"; import { ECommandShapePropertySimple } from "./e-command-shape-property-simple"; var ECommandShapePropertyTextOutlineWidth = /** @class */ (function (_super) { __extends(ECommandShapePropertyTextOutlineWidth, _super); function ECommandShapePropertyTextOutlineWidth() { return _super !== null && _super.apply(this, arguments) || this; } ECommandShapePropertyTextOutlineWidth.prototype.getProperty = function (shape, capability) { return shape.text.outline.width; }; ECommandShapePropertyTextOutlineWidth.prototype.setProperty = function (shape, capability, property) { shape.text.outline.width = property; }; ECommandShapePropertyTextOutlineWidth.prototype.isMergeable = function () { return true; }; return ECommandShapePropertyTextOutlineWidth; }(ECommandShapePropertySimple)); export { ECommandShapePropertyTextOutlineWidth }; //# sourceMappingURL=e-command-shape-property-text-outline-width.js.map