Interface IAuthenticationService

interface IAuthenticationService {
    events$: Observable<AuthenticationEvent>;
    isAuthenticated$: Observable<null | boolean>;
    isAuthenticated(): Promise<boolean>;
    signOut(): Promise<void>;
}

Implemented by

Properties

events$: Observable<AuthenticationEvent>
isAuthenticated$: Observable<null | boolean>

Methods