(opts?: {
fadeOutDuration?: number;
})
| 7 | * @param opts.fadeOutDuration - fade-out duration in milliseconds. |
| 8 | */ |
| 9 | export async function hideSplash(opts?: { |
| 10 | fadeOutDuration?: number; |
| 11 | }): Promise<void> { |
| 12 | const { SplashScreen } = await import("@capacitor/splash-screen"); |
| 13 | await SplashScreen.hide(opts); |
| 14 | } |