UNPKG

ekangularbase

Version:

Authentication service for usermanagement(oidc client)

13 lines (10 loc) 295 B
import * as fromApplication from './reducer'; export interface State { application: fromApplication.State; } export const logoutReducers = { application: fromApplication.reducer }; export function selectIsLoggedIn(state: State) { return state.application.isLoggedIn; }