UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

64 lines (63 loc) 2.42 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 ImageCellInfoDescription = /** @class */ /*@__PURE__*/ (function (_super) { __extends(ImageCellInfoDescription, _super); function ImageCellInfoDescription() { var _this = _super.call(this) || this; _this.fl = null; _this.fn = null; _this.fm = null; return _this; } ImageCellInfoDescription.prototype.get_type = function () { return "ImageCellInfo"; }; Object.defineProperty(ImageCellInfoDescription.prototype, "imagePath", { get: function () { return this.fl; }, set: function (a) { this.fl = a; this.e("ImagePath"); }, enumerable: false, configurable: true }); Object.defineProperty(ImageCellInfoDescription.prototype, "imageStretchOption", { get: function () { return this.fn; }, set: function (a) { this.fn = a; this.e("ImageStretchOption"); }, enumerable: false, configurable: true }); Object.defineProperty(ImageCellInfoDescription.prototype, "imageResourceType", { get: function () { return this.fm; }, set: function (a) { this.fm = a; this.e("ImageResourceType"); }, enumerable: false, configurable: true }); ImageCellInfoDescription.$t = markType(ImageCellInfoDescription, 'ImageCellInfoDescription', CellInfoDescription.$); ImageCellInfoDescription.__marshalByValue1 = true; ImageCellInfoDescription.__marshalByValueAlias1 = "ImageCellModel"; return ImageCellInfoDescription; }(CellInfoDescription)); export { ImageCellInfoDescription };