zhizhi/node_modules/dingtalk-jsapi/api/biz/util/callComponent.d.ts

28 lines
833 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/**
* 打开一方授权页面 请求参数定义
* @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$;