UNPKG

@azure/msal-browser

Version:
25 lines (22 loc) 718 B
/*! @azure/msal-browser v5.6.3 2026-04-01 */ 'use strict'; import { AuthFlowStateBase } from '../../../core/auth_flow/AuthFlowState.mjs'; import { SIGN_UP_FAILED_STATE_TYPE } from '../../../core/auth_flow/AuthFlowStateTypes.mjs'; /* * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. */ /** * Represents the state of a sign-up operation that has failed. */ class SignUpFailedState extends AuthFlowStateBase { constructor() { super(...arguments); /** * The type of the state. */ this.stateType = SIGN_UP_FAILED_STATE_TYPE; } } export { SignUpFailedState }; //# sourceMappingURL=SignUpFailedState.mjs.map