Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagetypescript
export interface NotificationServiceSbNotificationService {
   getNotifications(): Promise<NotificationFeedEntry<Notification>;
  
   handleNotification(notificationData: EventNotification): void;
  
   deleteNotification(notificationData: EventNotification): Promise<boolean>;
  
   clearAllNotifications(notificationListData: EventNotificationList): Promise<boolean>;
}

...