()
| 139 | * Check if the user has authentication credentials (but doesn't validate them) |
| 140 | */ |
| 141 | export const hasAuthCredentials = (): boolean => { |
| 142 | return !!getAuthTokenDetails().token |
| 143 | } |
| 144 | |
| 145 | export interface AuthValidationResult { |
| 146 | authenticated: boolean |
nothing calls this directly
no test coverage detected