UNPKG

810 BTypeScriptView Raw
1import { IonicNativePlugin } from '@ionic-native/core';
2/**
3 * @name Splash Screen
4 * @premier splashscreen
5 * @capacitorincompatible true
6 * @description This plugin displays and hides a splash screen during application launch. The methods below allows showing and hiding the splashscreen after the app has loaded.
7 * @usage
8 * ```typescript
9 * import { SplashScreen } from '@ionic-native/splash-screen/ngx';
10 *
11 * constructor(private splashScreen: SplashScreen) { }
12 *
13 * ...
14 *
15 * this.splashScreen.show();
16 *
17 * this.splashScreen.hide();
18 * ```
19 */
20export declare class SplashScreenOriginal extends IonicNativePlugin {
21 /**
22 * Shows the splashscreen
23 */
24 show(): void;
25 /**
26 * Hides the splashscreen
27 */
28 hide(): void;
29}
30
31export declare const SplashScreen: SplashScreenOriginal;
\No newline at end of file