UNPKG

549 BTypeScriptView Raw
1/**
2 * @name Splashscreen
3 * @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.
4 * @usage
5 * ```typescript
6 * import { Splashscreen } from 'ionic-native';
7 *
8 *
9 * Splashscreen.show();
10 *
11 * Splashscreen.hide();
12 * ```
13 */
14export declare class Splashscreen {
15 /**
16 * Shows the splashscreen
17 */
18 static show(): void;
19 /**
20 * Hides the splashscreen
21 */
22 static hide(): void;
23}