UNPKG

igniteui-react-core

Version:
50 lines (49 loc) 2.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 { GridColumnOptionsSectionBaseDescription } from "./GridColumnOptionsSectionBaseDescription"; import { markType } from "./type"; /** * @hidden */ var GridColumnOptionsSimpleSectionBaseDescription = /** @class */ /*@__PURE__*/ (function (_super) { __extends(GridColumnOptionsSimpleSectionBaseDescription, _super); function GridColumnOptionsSimpleSectionBaseDescription() { var _this = _super.call(this) || this; _this.au = null; _this.as = false; return _this; } GridColumnOptionsSimpleSectionBaseDescription.prototype.get_type = function () { return "GridColumnOptionsSimpleSectionBase"; }; Object.defineProperty(GridColumnOptionsSimpleSectionBaseDescription.prototype, "caption", { get: function () { return this.au; }, set: function (a) { this.au = a; this.g("Caption"); }, enumerable: false, configurable: true }); Object.defineProperty(GridColumnOptionsSimpleSectionBaseDescription.prototype, "showCaption", { get: function () { return this.as; }, set: function (a) { this.as = a; this.g("ShowCaption"); }, enumerable: false, configurable: true }); GridColumnOptionsSimpleSectionBaseDescription.$t = markType(GridColumnOptionsSimpleSectionBaseDescription, 'GridColumnOptionsSimpleSectionBaseDescription', GridColumnOptionsSectionBaseDescription.$); return GridColumnOptionsSimpleSectionBaseDescription; }(GridColumnOptionsSectionBaseDescription)); export { GridColumnOptionsSimpleSectionBaseDescription };