@azure/msal-browser
Version:
Microsoft Authentication Library for js
25 lines (22 loc) • 746 B
JavaScript
/*! @azure/msal-browser v5.10.1 2026-05-11 */
;
import { AuthFlowStateBase } from '../../../core/auth_flow/AuthFlowState.mjs';
import { RESET_PASSWORD_FAILED_STATE_TYPE } from '../../../core/auth_flow/AuthFlowStateTypes.mjs';
/*
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License.
*/
/**
* State of a reset password operation that has failed.
*/
class ResetPasswordFailedState extends AuthFlowStateBase {
constructor() {
super(...arguments);
/**
* The type of the state.
*/
this.stateType = RESET_PASSWORD_FAILED_STATE_TYPE;
}
}
export { ResetPasswordFailedState };
//# sourceMappingURL=ResetPasswordFailedState.mjs.map