From 4ad6df67f01cebce30d4da46c7541c4b14c5d4a4 Mon Sep 17 00:00:00 2001 From: Liam DeBeasi Date: Wed, 22 Nov 2023 11:46:38 -0500 Subject: [PATCH] fix(toast): add swipeGesture to ToastOptions (#28518) --- core/src/components/toast/toast-interface.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/core/src/components/toast/toast-interface.ts b/core/src/components/toast/toast-interface.ts index 7ed338e3ca..d5ddff69e4 100644 --- a/core/src/components/toast/toast-interface.ts +++ b/core/src/components/toast/toast-interface.ts @@ -9,6 +9,7 @@ export interface ToastOptions { buttons?: (ToastButton | string)[]; position?: 'top' | 'bottom' | 'middle'; positionAnchor?: HTMLElement | string; + swipeGesture?: ToastSwipeGestureDirection; translucent?: boolean; animated?: boolean; icon?: string;