UNPKG

igniteui-react-core

Version:
50 lines (49 loc) 2.12 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 { DataAnnotationShapeLayerDescription } from "./DataAnnotationShapeLayerDescription"; import { markType } from "./type"; /** * @hidden */ var DataAnnotationSliceLayerDescription = /** @class */ /*@__PURE__*/ (function (_super) { __extends(DataAnnotationSliceLayerDescription, _super); function DataAnnotationSliceLayerDescription() { var _this = _super.call(this) || this; _this.jo = null; _this.jn = null; return _this; } DataAnnotationSliceLayerDescription.prototype.get_type = function () { return "DataAnnotationSliceLayer"; }; Object.defineProperty(DataAnnotationSliceLayerDescription.prototype, "annotationValueMemberPath", { get: function () { return this.jo; }, set: function (a) { this.jo = a; this.g("AnnotationValueMemberPath"); }, enumerable: false, configurable: true }); Object.defineProperty(DataAnnotationSliceLayerDescription.prototype, "annotationLabelMemberPath", { get: function () { return this.jn; }, set: function (a) { this.jn = a; this.g("AnnotationLabelMemberPath"); }, enumerable: false, configurable: true }); DataAnnotationSliceLayerDescription.$t = markType(DataAnnotationSliceLayerDescription, 'DataAnnotationSliceLayerDescription', DataAnnotationShapeLayerDescription.$); return DataAnnotationSliceLayerDescription; }(DataAnnotationShapeLayerDescription)); export { DataAnnotationSliceLayerDescription };