zhizhi/node_modules/dingtalk-jsapi/api/biz/microApp/openApp.d.ts

25 lines
619 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.microApp.openApp
*/
export interface IBizMicroAppOpenAppParams {
agentId: string;
appId: string;
corpId: string;
}
/**
* 打开应用 返回结果定义
* @apiName biz.microApp.openApp
*/
export interface IBizMicroAppOpenAppResult {
/** 结果int -1 unkown0 fail1 success */
result: number;
}
/**
* 打开应用
* @apiName biz.microApp.openApp
* @supportVersion ios: 4.5.6 android: 4.5.6
*/
export declare function openApp$(params: IBizMicroAppOpenAppParams): Promise<IBizMicroAppOpenAppResult>;
export default openApp$;