UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

50 lines (49 loc) 2.09 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 { GeographicShapeSeriesBaseDescription } from "./GeographicShapeSeriesBaseDescription"; import { markType } from "./type"; /** * @hidden */ var GeographicTileSeriesDescription = /** @class */ /*@__PURE__*/ (function (_super) { __extends(GeographicTileSeriesDescription, _super); function GeographicTileSeriesDescription() { var _this = _super.call(this) || this; _this.f2 = null; _this.f4 = null; return _this; } GeographicTileSeriesDescription.prototype.get_type = function () { return "GeographicTileSeries"; }; Object.defineProperty(GeographicTileSeriesDescription.prototype, "tileImagery", { get: function () { return this.f2; }, set: function (a) { this.f2 = a; this.j("TileImagery"); }, enumerable: false, configurable: true }); Object.defineProperty(GeographicTileSeriesDescription.prototype, "imageTilesReadyRef", { get: function () { return this.f4; }, set: function (a) { this.f4 = a; this.j("ImageTilesReadyRef"); }, enumerable: false, configurable: true }); GeographicTileSeriesDescription.$t = markType(GeographicTileSeriesDescription, 'GeographicTileSeriesDescription', GeographicShapeSeriesBaseDescription.$); return GeographicTileSeriesDescription; }(GeographicShapeSeriesBaseDescription)); export { GeographicTileSeriesDescription };