mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-13 21:13:07 +00:00
10 lines
259 B
TypeScript
10 lines
259 B
TypeScript
/**
|
|
* Returns the user state.
|
|
* @function getUserState
|
|
* @param {AppState} state Top level state.
|
|
* @return {AuthState}
|
|
*/
|
|
import { AppState } from '../../app.reducer';
|
|
|
|
export const notificationsStateSelector = (state: AppState) => state.notifications;
|