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

12 lines
287 B
TypeScript
Executable file

/*
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License.
*/
import { AccountInfo } from "./AccountInfo.js";
import { TokenResponse } from "./TokenResponse.js";
export type AuthResult = {
token: TokenResponse;
account: AccountInfo;
};