Backstage
    Preparing search index...
    interface NotificationsApi {
        getNotification(id: string): Promise<Notification>;
        getNotifications(
            options?: GetNotificationsOptions,
        ): Promise<GetNotificationsResponse>;
        getNotificationSettings(): Promise<NotificationSettings>;
        getStatus(): Promise<NotificationStatus>;
        getTopics(
            options?: GetNotificationsCommonOptions,
        ): Promise<GetTopicsResponse>;
        updateNotifications(
            options: UpdateNotificationsOptions,
        ): Promise<Notification[]>;
        updateNotificationSettings(
            settings: NotificationSettings,
        ): Promise<NotificationSettings>;
    }

    Implemented by

    Index

    Methods