Edit

Share via


MsalAuthenticationResult type

type MsalAuthenticationResult = {
  acquireToken: (
    callbackInteractionType?: InteractionType,
    callbackRequest?: SilentRequest
  ) => Promise<AuthenticationResult | null>
  error: AuthError | null
  login: (
    callbackInteractionType?: InteractionType,
    callbackRequest?: PopupRequest | RedirectRequest | SilentRequest
  ) => Promise<AuthenticationResult | null>
  result: AuthenticationResult | null
}