diff --git a/core/src/components/toast/toast-interface.ts b/core/src/components/toast/toast-interface.ts index a846938435..585b66e37f 100644 --- a/core/src/components/toast/toast-interface.ts +++ b/core/src/components/toast/toast-interface.ts @@ -5,6 +5,7 @@ export interface ToastOptions { message?: string; cssClass?: string | string[]; duration?: number; + buttons?: (ToastButton | string)[]; showCloseButton?: boolean; closeButtonText?: string; position?: 'top' | 'bottom' | 'middle';