From 85084bce88b1c9b7e685ac98e4899d933f67d761 Mon Sep 17 00:00:00 2001 From: Jacob Minor Date: Fri, 6 Oct 2023 18:13:11 +0100 Subject: [PATCH] Add missing message property on ToastProps type --- components/lib/toast/Toast.d.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/components/lib/toast/Toast.d.ts b/components/lib/toast/Toast.d.ts index e040ed875a..3210fc9162 100755 --- a/components/lib/toast/Toast.d.ts +++ b/components/lib/toast/Toast.d.ts @@ -238,6 +238,11 @@ export interface ToastProps { * @deprecated since v3.26.0. Use 'pt' property. */ closeButtonProps?: ButtonHTMLAttributes | undefined; + /** + * Used to access message options. + * @type {ToastMessageOptions} + */ + message?: ToastMessageOptions; /** * Used to pass attributes to DOM elements inside the component. * @type {ToastPassThroughOptions}