@plyaz/types 1.45.5 → 1.45.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -100,6 +100,7 @@ export interface NotificationsFrontendStoreSlice extends NotificationsFrontendSt
|
|
|
100
100
|
}
|
|
101
101
|
/**
|
|
102
102
|
* Notifications store selectors
|
|
103
|
+
*
|
|
103
104
|
*/
|
|
104
105
|
export interface NotificationsStoreSelectors {
|
|
105
106
|
/** Select all notifications */
|
|
@@ -112,8 +113,4 @@ export interface NotificationsStoreSelectors {
|
|
|
112
113
|
selectIsLoading: (state: NotificationsFrontendStoreState) => boolean;
|
|
113
114
|
/** Select notification by ID */
|
|
114
115
|
selectNotificationById: (state: NotificationsFrontendStoreState, id: string) => NotificationStoreItem | undefined;
|
|
115
|
-
/** Select unread notifications */
|
|
116
|
-
selectUnreadNotifications: (state: NotificationsFrontendStoreState) => NotificationStoreItem[];
|
|
117
|
-
/** Select unread count */
|
|
118
|
-
selectUnreadCount: (state: NotificationsFrontendStoreState) => number;
|
|
119
116
|
}
|
package/package.json
CHANGED