7 lines
352 B
TypeScript
Executable file
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;
|