UNPKG

@azure/msal-browser

Version:
18 lines (15 loc) 501 B
/* * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. */ import { AuthFlowStateBase } from "../../../core/auth_flow/AuthFlowState.js"; import { SIGN_IN_FAILED_STATE_TYPE } from "../../../core/auth_flow/AuthFlowStateTypes.js"; /** * Represents the state of a sign-in operation that has been failed. */ export class SignInFailedState extends AuthFlowStateBase { /** * The type of the state. */ stateType = SIGN_IN_FAILED_STATE_TYPE; }