14 lines
273 B
TypeScript
14 lines
273 B
TypeScript
interface Profile {
|
|
userId: string;
|
|
displayName: string;
|
|
pictureUrl?: string;
|
|
statusMessage?: string;
|
|
}
|
|
/**
|
|
* Gets the current user's profile.
|
|
* @export
|
|
* @returns {Promise<Profile>}
|
|
*/
|
|
export default function getProfile(): Promise<Profile>;
|
|
export {};
|