UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

64 lines (63 loc) 2.55 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 { CellInfoDescription } from "./CellInfoDescription"; import { markType } from "./type"; /** * @hidden */ var SectionHeaderCellInfoDescription = /** @class */ /*@__PURE__*/ (function (_super) { __extends(SectionHeaderCellInfoDescription, _super); function SectionHeaderCellInfoDescription() { var _this = _super.call(this) || this; _this.gp = null; _this.go = null; _this.gq = null; return _this; } SectionHeaderCellInfoDescription.prototype.get_type = function () { return "SectionHeaderCellInfo"; }; Object.defineProperty(SectionHeaderCellInfoDescription.prototype, "resolvedText", { get: function () { return this.gp; }, set: function (a) { this.gp = a; this.j("ResolvedText"); }, enumerable: false, configurable: true }); Object.defineProperty(SectionHeaderCellInfoDescription.prototype, "resolvedSummaryText", { get: function () { return this.go; }, set: function (a) { this.go = a; this.j("ResolvedSummaryText"); }, enumerable: false, configurable: true }); Object.defineProperty(SectionHeaderCellInfoDescription.prototype, "summaryDisplayMode", { get: function () { return this.gq; }, set: function (a) { this.gq = a; this.j("SummaryDisplayMode"); }, enumerable: false, configurable: true }); SectionHeaderCellInfoDescription.$t = markType(SectionHeaderCellInfoDescription, 'SectionHeaderCellInfoDescription', CellInfoDescription.$); SectionHeaderCellInfoDescription.__marshalByValue1 = true; SectionHeaderCellInfoDescription.__marshalByValueAlias1 = "SectionHeaderCellModel"; return SectionHeaderCellInfoDescription; }(CellInfoDescription)); export { SectionHeaderCellInfoDescription };