From 12505f3b5761c382702e3370a0633e0336bed84e Mon Sep 17 00:00:00 2001 From: jcesarmobile Date: Mon, 2 Dec 2024 13:09:21 +0100 Subject: [PATCH] refactor(splash-screen)!: remove deprecated types (#2266) --- 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;