From dbc54ee316893e376db282697f256e3b729c3e0e Mon Sep 17 00:00:00 2001 From: jcesarmobile Date: Wed, 27 Nov 2024 19:02:17 +0100 Subject: [PATCH] refactor(splash-screen)!: remove deprecated types --- splash-screen/src/definitions.ts | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/splash-screen/src/definitions.ts b/splash-screen/src/definitions.ts index 2b0ab5ad6..4cb6f2380 100644 --- a/splash-screen/src/definitions.ts +++ b/splash-screen/src/definitions.ts @@ -235,15 +235,3 @@ export interface SplashScreenPlugin { */ hide(options?: HideOptions): Promise; } - -/** - * @deprecated Use `ShowOptions`. - * @since 1.0.0 - */ -export type SplashScreenShowOptions = ShowOptions; - -/** - * @deprecated Use `HideOptions`. - * @since 1.0.0 - */ -export type SplashScreenHideOptions = HideOptions;