src/app/auth/reducers/auth.state.ts
isAuthenticated |
isAuthenticated: |
Type : boolean
|
Defined in src/app/auth/reducers/auth.state.ts:4
|
import { Map, Record } from 'immutable';
export interface AuthState extends Map<string, any> {
isAuthenticated: boolean;
}
export const AuthStateRecord = Record({
isAuthenticated: false
});