Front end of the Slack clone application.

12345678910111213141516171819202122232425262728
  1. import { IonicNativePlugin } from '@ionic-native/core';
  2. /**
  3. * @name Splash Screen
  4. * @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.
  5. * @usage
  6. * ```typescript
  7. * import { SplashScreen } from '@ionic-native/splash-screen';
  8. *
  9. * constructor(private splashScreen: SplashScreen) { }
  10. *
  11. * ...
  12. *
  13. * this.splashScreen.show();
  14. *
  15. * this.splashScreen.hide();
  16. * ```
  17. */
  18. export declare class SplashScreen extends IonicNativePlugin {
  19. /**
  20. * Shows the splashscreen
  21. */
  22. show(): void;
  23. /**
  24. * Hides the splashscreen
  25. */
  26. hide(): void;
  27. }