UNPKG

igniteui-react-core

Version:
44 lines (43 loc) 1.67 kB
/* THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE: https://www.infragistics.com/legal/license/igultimate-la https://www.infragistics.com/legal/license/igultimate-eula GOVERNS THE LICENSING, INSTALLATION AND USE OF INFRAGISTICS SOFTWARE. BY DOWNLOADING AND/OR INSTALLING AND USING INFRAGISTICS SOFTWARE: you are indicating that you have read and understand this Agreement, and agree to be legally bound by it on behalf of the yourself and your company. */ import { __extends } from "tslib"; import { Base, markType } from "./type"; /** * @hidden */ var DescriptionPathSegment = /** @class */ /*@__PURE__*/ (function (_super) { __extends(DescriptionPathSegment, _super); function DescriptionPathSegment() { var _this = _super !== null && _super.apply(this, arguments) || this; _this._elementName = null; _this._indexers = null; return _this; } Object.defineProperty(DescriptionPathSegment.prototype, "elementName", { get: function () { return this._elementName; }, set: function (a) { this._elementName = a; }, enumerable: false, configurable: true }); Object.defineProperty(DescriptionPathSegment.prototype, "indexers", { get: function () { return this._indexers; }, set: function (a) { this._indexers = a; }, enumerable: false, configurable: true }); DescriptionPathSegment.$t = markType(DescriptionPathSegment, 'DescriptionPathSegment'); return DescriptionPathSegment; }(Base)); export { DescriptionPathSegment };