UNPKG

igniteui-react-core

Version:
38 lines (37 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 { GeographicMapImageryDescription } from "./GeographicMapImageryDescription"; import { markType } from "./type"; /** * @hidden */ var TileGeneratorMapImageryDescription = /** @class */ /*@__PURE__*/ (function (_super) { __extends(TileGeneratorMapImageryDescription, _super); function TileGeneratorMapImageryDescription() { var _this = _super.call(this) || this; _this.ac = null; return _this; } TileGeneratorMapImageryDescription.prototype.get_type = function () { return "TileGeneratorMapImagery"; }; Object.defineProperty(TileGeneratorMapImageryDescription.prototype, "tileGenerator", { get: function () { return this.ac; }, set: function (a) { this.ac = a; this.g("TileGenerator"); }, enumerable: false, configurable: true }); TileGeneratorMapImageryDescription.$t = markType(TileGeneratorMapImageryDescription, 'TileGeneratorMapImageryDescription', GeographicMapImageryDescription.$); return TileGeneratorMapImageryDescription; }(GeographicMapImageryDescription)); export { TileGeneratorMapImageryDescription };