semblance-dev/node_modules/@azure/msal-react/dist/hooks/useAccount.d.ts
2025-12-19 19:26:16 +00:00

7 lines
352 B
TypeScript
Executable file

import { AccountInfo } from "@azure/msal-browser";
import { AccountIdentifiers } from "../types/AccountIdentifiers.js";
/**
* Given 1 or more accountIdentifiers, returns the Account object if the user is signed-in
* @param accountIdentifiers
*/
export declare function useAccount(accountIdentifiers?: AccountIdentifiers): AccountInfo | null;