Type alias AuthContextValue

AuthContextValue: {
    isLoggedIn: boolean;
    isUsingFormsKey: boolean;
    userFriendlyName: string | undefined;
    userProfile: UserProfile | null;
}

Type declaration