Metatell AI Bot - v0.0.10
    Preparing search index...

    Interface IAuthenticationService

    interface IAuthenticationService {
        authenticate(credentials: AuthCredentials): Promise<AuthToken>;
        getToken(): null | AuthToken;
        isAuthenticated(): boolean;
        logout(): void;
        refreshToken(): Promise<AuthToken>;
    }
    Index

    Methods