UNPKG

nativescript-xz-ad-generation

Version:
23 lines (22 loc) 924 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var content_view_1 = require("tns-core-modules/ui/content-view"); exports.nativeAdProperty = new content_view_1.Property({ name: "nativeAd", }); var InformationIconViewBase = (function (_super) { __extends(InformationIconViewBase, _super); function InformationIconViewBase() { return _super !== null && _super.apply(this, arguments) || this; } InformationIconViewBase.prototype[exports.nativeAdProperty.getDefault] = function () { return this._nativeAd; }; InformationIconViewBase.prototype[exports.nativeAdProperty.setNative] = function (value) { this._nativeAd = value; this.loadNativeAd(); }; return InformationIconViewBase; }(content_view_1.ContentView)); exports.InformationIconViewBase = InformationIconViewBase; exports.nativeAdProperty.register(InformationIconViewBase);