MrShi
5 天以前 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
27
28
29
30
export declare const apiName = "internal.security.asgCheck";
/**
 * internal.security.asgCheck 请求参数定义
 * @apiName internal.security.asgCheck
 */
export interface IInternalSecurityAsgCheckParams {
}
/**
 * internal.security.asgCheck 返回结果定义
 * @apiName internal.security.asgCheck
 */
export interface IInternalSecurityAsgCheckResult {
    /** 检测设备环境 */
    methodDE: string;
    /** 检测应用运行环境 */
    methodDM: string;
    /** 检测是否存在模拟点击service */
    methodDAType0: string;
    /** 检测是否存在模拟输入法 */
    methodDAType1: string;
    /** 检测是否存在模拟地理位置篡改app */
    methodDL: string;
}
/**
 * internal.security.asgCheck
 * @apiName internal.security.asgCheck
 * @supportVersion android: 4.3.7
 */
export declare function asgCheck$(params: IInternalSecurityAsgCheckParams): Promise<IInternalSecurityAsgCheckResult>;
export default asgCheck$;