zhizhi/node_modules/dingtalk-jsapi/api/biz/tabwindow/isTab.d.ts

27 lines
806 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.tabwindow.isTab
*/
export interface IBizTabwindowIsTabParams {
}
/**
* 判断当前容器环境是否为妙聚窗口 返回结果定义
* @apiName biz.tabwindow.isTab
*/
export interface IBizTabwindowIsTabResult {
/** 固定有一个字段result值为bool用于指示当前是否为妙聚窗口环境 */
data: {
result: boolean;
[key: string]: any;
};
[key: string]: any;
}
/**
* 判断当前容器环境是否为妙聚窗口
* @apiName biz.tabwindow.isTab
* @supportVersion Mac: 6.5.10 Windows: 6.5.10
* @author Mac兔仔 Windows 周镛
*/
export declare function isTab$(params: IBizTabwindowIsTabParams): Promise<IBizTabwindowIsTabResult>;
export default isTab$;