hosanna-ui-docs - v0.9.0
    Preparing search index...

    Interface INotification<T>

    Interface representing a notification with a name and associated data.

    interface INotification<T = undefined> {
        data: T;
        name: string;
    }

    Type Parameters

    • T = undefined

    Implemented by

    Index

    Properties

    Properties

    data: T

    The data payload associated with the notification.

    name: string

    The name of the notification.