UNPKG

@pilotlab/lux-tools

Version:

A luxurious user experience framework, developed by your friends at Pilot.

15 lines 695 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); const attributes_1 = require("@pilotlab/attributes"); const styleElement_1 = require("./styleElement"); class StyleLine extends styleElement_1.default { constructor(data) { super(data); this.p_thickness = this.children.get('thickness', 0, attributes_1.DataType.NUMBER_DOUBLE, null, attributes_1.AttributeChangeOptions.zero); } get thickness() { return this.p_thickness.value; } set thickness(value) { this.p_thickness.set(value, attributes_1.AttributeChangeOptions.save.durationZero); } } exports.StyleLine = StyleLine; exports.default = StyleLine; //# sourceMappingURL=styleLine.js.map