OpenFin Workspace API
    Preparing search index...

    Interface NotificationClosedEvent

    Event fired whenever the notification has been closed.

    This event is fired regardless of how the notification was closed - i.e.: via a call to clear/clearAll, the notification expiring, or by a user clicking either the notification itself, the notification's close button, or a button on the notification.

    "notification-closed"

    interface NotificationClosedEvent {
        notification: Readonly;
        type: "notification-closed";
    }
    Index
    notification: Readonly

    The notification that has just been closed.

    This object will match what is returned from the create call when the notification was first created.

    type: "notification-closed"