UNPKG

@atlaskit/profilecard

Version:

A React component to display a card with user information.

9 lines (8 loc) 246 B
export declare const useProfileInfo: <T>({ fetchUserProfile, }: { fetchUserProfile?: (() => Promise<T>) | undefined; }) => { profileData: T | undefined; isLoading: boolean; error: null; getProfileData: () => Promise<void>; };