getAllFriends
Lấy danh sách bạn bè của tài khoản đã đăng nhập
api.getAllFriends()
Parameters
count
number?mặc định 20000
page
number?mặc định 1
Return
Promise<GetAllFriendsResponse>
Types
export type GetAllFriendsResponse = User[];Examples
api.getAllFriends()
.then(console.log)
.catch(console.error);Related
Last updated