import { WebPlugin } from '@capacitor/core'; import type { HideOptions, ShowOptions, SplashScreenPlugin, } from './definitions'; export class SplashScreenWeb extends WebPlugin implements SplashScreenPlugin { async show(_options?: ShowOptions): Promise { return undefined; } async hide(_options?: HideOptions): Promise { return undefined; } }