UNPKG

igniteui-react-core

Version:
40 lines (39 loc) 1.7 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 TemplateCellInfoDescription = /** @class */ /*@__PURE__*/ (function (_super) { __extends(TemplateCellInfoDescription, _super); function TemplateCellInfoDescription() { var _this = _super.call(this) || this; _this.fp = null; return _this; } TemplateCellInfoDescription.prototype.get_type = function () { return "TemplateCellInfo"; }; Object.defineProperty(TemplateCellInfoDescription.prototype, "valueRef", { get: function () { return this.fp; }, set: function (a) { this.fp = a; this.g("ValueRef"); }, enumerable: false, configurable: true }); TemplateCellInfoDescription.$t = markType(TemplateCellInfoDescription, 'TemplateCellInfoDescription', CellInfoDescription.$); TemplateCellInfoDescription.__marshalByValue1 = true; TemplateCellInfoDescription.__marshalByValueAlias1 = "TemplateCellModel"; return TemplateCellInfoDescription; }(CellInfoDescription)); export { TemplateCellInfoDescription };