6 lines
344 B
TypeScript
Executable file
6 lines
344 B
TypeScript
Executable file
import { AccountIdentifiers } from "../types/AccountIdentifiers.js";
|
|
/**
|
|
* Returns whether or not a user is currently signed-in. Optionally provide 1 or more accountIdentifiers to determine if a specific user is signed-in
|
|
* @param matchAccount
|
|
*/
|
|
export declare function useIsAuthenticated(matchAccount?: AccountIdentifiers): boolean;
|