From 983382c327ca0dd1b648e3d41ae337c1f07bd291 Mon Sep 17 00:00:00 2001 From: Liam DeBeasi Date: Mon, 15 Apr 2019 17:09:00 -0400 Subject: [PATCH] fix(toast): update toast interface to include buttons --- 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 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';