MrShi
4 天以前 acf90ad8e6bea592124541324467360cef565ff5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import '../../entry/union';
interface AddMembersArgs {
    /** 酷应用身份信息 code */
    context: {
        /** 酷应用 code */
        coolAppCode: string;
        /** 酷应用在开放平台的身份标识 */
        clientId: string;
        /** 组织idid */
        corpId: string;
    };
    /** 要添加成员的的群id */
    openConversationList: string[];
    /** 需要入群的成员 userid */
    userIds: string[];
}
/** 群聊内添加群成员的能力 */
export declare function addMembers(args: AddMembersArgs): Promise<any>;
export {};