doum
2 天以前 c0829b5caf69e9cd83855de784153c613879f27f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
export declare const apiName = "internal.chat.showTopicEmotionBar";
/**
 * 打开群话题点赞弹窗 请求参数定义
 * @apiName internal.chat.showTopicEmotionBar
 */
export interface IInternalChatShowTopicEmotionBarParams {
    /** 话题所在的会话id */
    cid: string;
    /** 话题对应的消息id */
    mid: number;
    /** 弹窗相对屏幕左上角的y轴偏移 */
    yoffset?: number;
}
/**
 * 打开群话题点赞弹窗 返回结果定义
 * @apiName internal.chat.showTopicEmotionBar
 */
export interface IInternalChatShowTopicEmotionBarResult {
}
/**
 * 打开群话题点赞弹窗
 * @apiName internal.chat.showTopicEmotionBar
 * @supportVersion ios: 4.6.25 android: 4.6.25
 */
export declare function showTopicEmotionBar$(params: IInternalChatShowTopicEmotionBarParams): Promise<IInternalChatShowTopicEmotionBarResult>;
export default showTopicEmotionBar$;