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

28 lines
833 B
TypeScript
Raw Normal View History

/**
*
* @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$;