Hosanna UI API v1.30.2-next
    Preparing search index...

    Interface INotificationClient

    Interface for a client that can handle notifications. toggleNotificationSubscription may set __handler${notificationName} on the instance for the bound callback.

    interface INotificationClient {
        notificationHandlers?: {
            handler: notification_api.onNotification<any>;
            name: string;
        }[];
    }
    Index

    Properties

    notificationHandlers?: {
        handler: notification_api.onNotification<any>;
        name: string;
    }[]

    Array of notification handler registrations.