Type alias MsalAuthenticationResult

MsalAuthenticationResult: {
    acquireToken: ((callbackInteractionType?, callbackRequest?) => Promise<AuthenticationResult | null>);
    error: AuthError | null;
    login: ((callbackInteractionType?, callbackRequest?) => Promise<AuthenticationResult | null>);
    result: AuthenticationResult | null;
}

Type declaration

Generated using TypeDoc