rk
2 天以前 38d111cb6defedff3bf06314ca30d22a01faae22
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
export declare const apiName = "internal.focus.openFocusFloatingView";
/**
 * 开启投屏悬浮窗 请求参数定义
 * @apiName internal.focus.openFocusFloatingView
 */
export interface IInternalFocusOpenFocusFloatingViewParams {
    /** 点击悬浮窗后跳转的地址 */
    href: string;
}
/**
 * 开启投屏悬浮窗 返回结果定义
 * @apiName internal.focus.openFocusFloatingView
 */
export interface IInternalFocusOpenFocusFloatingViewResult {
    [key: string]: any;
}
/**
 * 开启投屏悬浮窗
 * @apiName internal.focus.openFocusFloatingView
 * @supportVersion android: 4.7.23
 * @author android: 柳樵, ios: 见招
 */
export declare function openFocusFloatingView$(params: IInternalFocusOpenFocusFloatingViewParams): Promise<IInternalFocusOpenFocusFloatingViewResult>;
export default openFocusFloatingView$;