UNPKG

1.11 kBJavaScriptView Raw
1'use strict';
2
3Object.defineProperty(exports, '__esModule', { value: true });
4
5var tslib = require('tslib');
6var core$1 = require('@angular/core');
7var core = require('@ionic-native/core');
8
9var SplashScreen = /** @class */ (function (_super) {
10 tslib.__extends(SplashScreen, _super);
11 function SplashScreen() {
12 return _super !== null && _super.apply(this, arguments) || this;
13 }
14 SplashScreen.prototype.show = function () { return core.cordova(this, "show", { "sync": true }, arguments); };
15 SplashScreen.prototype.hide = function () { return core.cordova(this, "hide", { "sync": true }, arguments); };
16 SplashScreen.pluginName = "SplashScreen";
17 SplashScreen.plugin = "cordova-plugin-splashscreen";
18 SplashScreen.pluginRef = "navigator.splashscreen";
19 SplashScreen.repo = "https://github.com/apache/cordova-plugin-splashscreen";
20 SplashScreen.platforms = ["Amazon Fire OS", "Android", "iOS", "Windows"];
21 SplashScreen.decorators = [
22 { type: core$1.Injectable }
23 ];
24 return SplashScreen;
25}(core.IonicNativePlugin));
26
27exports.SplashScreen = SplashScreen;