UNPKG

igniteui-react-core

Version:
40 lines (39 loc) 1.84 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 { TemplateCellInfoDescription } from "./TemplateCellInfoDescription"; import { markType } from "./type"; /** * @hidden */ var TemplateHeaderCellInfoDescription = /** @class */ /*@__PURE__*/ (function (_super) { __extends(TemplateHeaderCellInfoDescription, _super); function TemplateHeaderCellInfoDescription() { var _this = _super.call(this) || this; _this.fs = false; return _this; } TemplateHeaderCellInfoDescription.prototype.get_type = function () { return "TemplateHeaderCellInfo"; }; Object.defineProperty(TemplateHeaderCellInfoDescription.prototype, "isFilterUIVisible", { get: function () { return this.fs; }, set: function (a) { this.fs = a; this.g("IsFilterUIVisible"); }, enumerable: false, configurable: true }); TemplateHeaderCellInfoDescription.$t = markType(TemplateHeaderCellInfoDescription, 'TemplateHeaderCellInfoDescription', TemplateCellInfoDescription.$); TemplateHeaderCellInfoDescription.__marshalByValue2 = true; TemplateHeaderCellInfoDescription.__marshalByValueAlias2 = "TemplateHeaderCellModel"; return TemplateHeaderCellInfoDescription; }(TemplateCellInfoDescription)); export { TemplateHeaderCellInfoDescription };