AboutSupportDeveloper GuideVersion 22.3.18

Event fired whenever notification toast has been dismissed. This could be either by pressing notification dismiss - button or by clicking notification body if BODY_CLICK action has been set to "dismiss_event".

"notification-toast-dismissed"

interface NotificationToastDismissedEvent {
    notification: Readonly<Required<Omit<TemplateMarkdown, "buttons"> | Omit<TemplateList, "buttons"> | Omit<TemplateCustom, "buttons">> & {
        buttons: readonly Required<ButtonOptions>[];
    }>;
    type: "notification-toast-dismissed";
}

Properties

Properties

notification: Readonly<Required<Omit<TemplateMarkdown, "buttons"> | Omit<TemplateList, "buttons"> | Omit<TemplateCustom, "buttons">> & {
    buttons: readonly Required<ButtonOptions>[];
}>
type