zhizhi/node_modules/dingtalk-jsapi/api/ui/multitask/addToFloat.d.ts

29 lines
879 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 ui.multitask.addToFloat
*/
export interface IUiMultitaskAddToFloatParams {
/** 默认值小程序默认icon H5OGP image */
icon?: string;
/** 默认值小程序defaultTitle H5OGP title */
title?: string;
/** 默认值小程序当前page H5OGP description或当前url */
content?: string;
}
/**
* 添加到浮窗 返回结果定义
* @apiName ui.multitask.addToFloat
*/
export interface IUiMultitaskAddToFloatResult {
/** 浮窗IDdelete时需要使用 */
id: string;
}
/**
* 添加到浮窗
* @apiName ui.multitask.addToFloat
* @supportVersion ios: 6.5.0 android: 6.5.0
* @author Android零封 iOS无最
*/
export declare function addToFloat$(params: IUiMultitaskAddToFloatParams): Promise<IUiMultitaskAddToFloatResult>;
export default addToFloat$;