semblance_backup/node_modules/@azure/msal-browser/src/response/AuthenticationResult.ts
2025-12-19 19:26:16 +00:00

13 lines
319 B
TypeScript
Executable file

/*
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License.
*/
import {
AccountInfo,
AuthenticationResult as CommonAuthenticationResult,
} from "@azure/msal-common/browser";
export type AuthenticationResult = CommonAuthenticationResult & {
account: AccountInfo;
};