Files
powerpoint-toolbox/node_modules/@azure/msal-browser/src/response/AuthenticationResult.ts
T
2025-03-07 19:22:02 +01:00

14 lines
319 B
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;
};