interface NotificationBoxStateAttributes {
    isEmpty: boolean;
    loading: boolean;
    loadingMore: boolean;
    notificationsCount: number;
    readingNotification: null | NotificationViewModel;
}

Properties

isEmpty: boolean
loading: boolean
loadingMore: boolean
notificationsCount: number
readingNotification: null | NotificationViewModel