rk
5 天以前 fea8e0742ee241a94c5bbd4f452d6ad82cf4dd9c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
export declare const apiName = "internal.imshortcut.initEventChannel";
/**
 * 初始化消息捷径事件通道,事件通道初始化之后,才会收到后续的各种消息/群状态的变更。 请求参数定义
 * @apiName internal.imshortcut.initEventChannel
 */
export interface IInternalImshortcutInitEventChannelParams {
    /** 消息过滤器类型 102 红包 103 @我 104 特别关注 105 链接 */
    filterType: number;
}
/**
 * 初始化消息捷径事件通道,事件通道初始化之后,才会收到后续的各种消息/群状态的变更。 返回结果定义
 * @apiName internal.imshortcut.initEventChannel
 */
export interface IInternalImshortcutInitEventChannelResult {
}
/**
 * 初始化消息捷径事件通道,事件通道初始化之后,才会收到后续的各种消息/群状态的变更。
 * @apiName internal.imshortcut.initEventChannel
 * @supportVersion ios: 4.6.37 android: 4.6.37
 */
export declare function initEventChannel$(params: IInternalImshortcutInitEventChannelParams): Promise<IInternalImshortcutInitEventChannelResult>;
export default initEventChannel$;