@azure/msal-browser
Version:
Microsoft Authentication Library for js
14 lines (11 loc) • 319 B
text/typescript
/*
* 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;
};