UNPKG

igniteui-react-core

Version:
55 lines (54 loc) 2 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 DescriptionRefTargetInfo = /** @class */ /*@__PURE__*/ (function (_super) { __extends(DescriptionRefTargetInfo, _super); function DescriptionRefTargetInfo() { var _this = _super !== null && _super.apply(this, arguments) || this; _this._target = null; _this._propertyName = null; _this._container = null; return _this; } Object.defineProperty(DescriptionRefTargetInfo.prototype, "target", { get: function () { return this._target; }, set: function (a) { this._target = a; }, enumerable: false, configurable: true }); Object.defineProperty(DescriptionRefTargetInfo.prototype, "propertyName", { get: function () { return this._propertyName; }, set: function (a) { this._propertyName = a; }, enumerable: false, configurable: true }); Object.defineProperty(DescriptionRefTargetInfo.prototype, "container", { get: function () { return this._container; }, set: function (a) { this._container = a; }, enumerable: false, configurable: true }); DescriptionRefTargetInfo.$t = markType(DescriptionRefTargetInfo, 'DescriptionRefTargetInfo'); return DescriptionRefTargetInfo; }(Base)); export { DescriptionRefTargetInfo };