UNPKG

@pilotlab/lux-attributes

Version:

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

26 lines 933 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var AttributeReader = (function () { function AttributeReader(attribute) { this.p_attribute = attribute; } Object.defineProperty(AttributeReader.prototype, "value", { get: function () { return this.p_attribute.value; }, enumerable: true, configurable: true }); Object.defineProperty(AttributeReader.prototype, "valuePrevious", { get: function () { return this.p_attribute.valuePrevious; }, enumerable: true, configurable: true }); Object.defineProperty(AttributeReader.prototype, "changed", { get: function () { return this.p_attribute.changed; }, enumerable: true, configurable: true }); return AttributeReader; }()); exports.AttributeReader = AttributeReader; exports.default = AttributeReader; //# sourceMappingURL=attributeReader.js.map