doum
8 天以前 d5810177a4e77ea273971e51dd150bd84906de6f
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
27
/**
 * 打开一方授权页面 请求参数定义
 * @apiName biz.util.callComponent
 */
export interface IBizUtilCallComponentParams {
    /** 打开一方H5 或 小程序,目前仅支持 h5 和 miniProgram 两个值 */
    componentType: string;
    /** 参数说明 */
    params: {
        [key: string]: any;
    };
}
/**
 * 打开一方授权页面 返回结果定义
 * @apiName biz.util.callComponent
 */
export interface IBizUtilCallComponentResult {
    [key: string]: any;
}
/**
 * 打开一方授权页面
 * @apiName biz.util.callComponent
 * @supportVersion ios: 6.3.35 android: 6.3.35 pc: 6.3.35
 * @author Android:理致 iOS:犹树 Mac: 千谋 win: 仟晨
 */
export declare function callComponent$(params: IBizUtilCallComponentParams): Promise<IBizUtilCallComponentResult>;
export default callComponent$;