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
export declare const apiName = "internal.channel.openPage";
/**
 * 打开指定企业服务窗相关页面 请求参数定义
 * @apiName internal.channel.openPage
 */
export interface IInternalChannelOpenPageParams {
    [key: string]: any;
}
/**
 * 打开指定企业服务窗相关页面 返回结果定义
 * @apiName internal.channel.openPage
 */
export interface IInternalChannelOpenPageResult {
    [key: string]: any;
}
/**
 * 打开指定企业服务窗相关页面
 * @apiName internal.channel.openPage
 * @supportVersion  ios: 3.2.0 android: 3.2.0
 */
export declare function openPage$(params: IInternalChannelOpenPageParams): Promise<IInternalChannelOpenPageResult>;
export default openPage$;