fetchAccountInfo

Lấy thông tin của tài khoản đã đăng nhập

api.fetchAccountInfo()

Parameters

Return

Promise<FetchAccountInfoResponse>

Types

export type FetchAccountInfoResponse = User;

Examples

api.fetchAccountInfo()
    .then(console.log)
    .catch(console.error);

Last updated