13 lines
319 B
TypeScript
Executable file
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;
|
|
};
|