UNPKG

easemob-chat-uikit

Version:

![Static Badge](https://img.shields.io/badge/platform-React-green) ![Static Badge](https://img.shields.io/badge/language-typescript-green) ![GitHub commit activity](https://img.shields.io/github/commit-activity/y/easemob/Easemob-UIKit-web) ![GitHub last c

21 lines (20 loc) 794 B
declare const useContacts: () => { userId: string; nickname: string; }[]; declare const useUserInfo: (userList: 'conversation' | 'contacts' | 'blocklist', withPresence?: boolean) => void; declare const useGroups: () => { getJoinedGroupList: () => void; }; declare const useGroupMembers: (groupId: string, withUserInfo: boolean) => { getGroupMemberList?: undefined; } | { getGroupMemberList: () => Promise<void> | undefined; }; declare const useGroupMembersAttributes: (groupId: string, userIds: string[], attributesKeys?: string[]) => { getMemberAttributes: () => void; }; declare const useGroupAdmins: (groupId: string) => { getGroupAdmins: () => void; }; export { useContacts, useGroups, useUserInfo, useGroupMembers, useGroupAdmins, useGroupMembersAttributes, };