UNPKG

igniteui-react-core

Version:
34 lines (33 loc) 1.5 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 { TemplateCellInfoDescription } from "./TemplateCellInfoDescription"; import { markType } from "./type"; /** * @hidden */ export let TemplateHeaderCellInfoDescription = /*@__PURE__*/ (() => { class TemplateHeaderCellInfoDescription extends TemplateCellInfoDescription { get_type() { return "TemplateHeaderCellInfo"; } constructor() { super(); this.fq = false; } get isFilterUIVisible() { return this.fq; } set isFilterUIVisible(a) { this.fq = a; this.g("IsFilterUIVisible"); } } TemplateHeaderCellInfoDescription.$t = /*@__PURE__*/ markType(TemplateHeaderCellInfoDescription, 'TemplateHeaderCellInfoDescription', TemplateCellInfoDescription.$); TemplateHeaderCellInfoDescription.__marshalByValue2 = true; TemplateHeaderCellInfoDescription.__marshalByValueAlias2 = "TemplateHeaderCellModel"; return TemplateHeaderCellInfoDescription; })();