MrShi
8 天以前 1ab34d6347171b10acf78fcd3d6678eac0483bae
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
export declare const apiName = "biz.live.getDynamicMsgCount";
/**
 * 获取直播动态消息数 请求参数定义
 * @apiName biz.live.getDynamicMsgCount
 */
export interface IBizLiveGetDynamicMsgCountParams {
    [key: string]: any;
}
/**
 * 获取直播动态消息数 返回结果定义
 * @apiName biz.live.getDynamicMsgCount
 */
export interface IBizLiveGetDynamicMsgCountResult {
    /** 未读动态数 */
    count: number;
}
/**
 * 获取直播动态消息数
 * @apiName biz.live.getDynamicMsgCount
 * @supportVersion ios: 4.6.10 android: 4.6.10
 */
export declare function getDynamicMsgCount$(params: IBizLiveGetDynamicMsgCountParams): Promise<IBizLiveGetDynamicMsgCountResult>;
export default getDynamicMsgCount$;