MrShi
4 天以前 05aec1e9986fbe3e907259bb1a1396f129bd0fa1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
/**
 * 打开系统设置 请求参数定义
 * @apiName device.base.openSystemSetting
 */
export interface IDeviceBaseOpenSystemSettingParams {
    /** Android系统中action的概念,如android.settings.BLUETOOTH_SETTINGS打开蓝牙设置页面 */
    action?: string;
    /** Android系统中跳转系统应用所需的参数 */
    param?: string;
    /** Android系统中跳转系统应用所需的data参数 */
    data?: string;
}
/**
 * 打开系统设置 返回结果定义
 * @apiName device.base.openSystemSetting
 */
export interface IDeviceBaseOpenSystemSettingResult {
}
/**
 * 打开系统设置
 * @apiName device.base.openSystemSetting
 * @supportVersion android: 6.0.27 ios: 6.3.15
 * @author Android:序望 iOS:轻罗
 */
export declare function openSystemSetting$(params: IDeviceBaseOpenSystemSettingParams): Promise<IDeviceBaseOpenSystemSettingResult>;
export default openSystemSetting$;