doum
8 天以前 d5810177a4e77ea273971e51dd150bd84906de6f
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
/**
 * 专属包开启实时定位 请求参数定义
 * @apiName biz.realm.startRealtimeTracing
 */
export interface IBizRealmStartRealtimeTracingParams {
}
/**
 * 专属包开启实时定位 返回结果定义
 * @apiName biz.realm.startRealtimeTracing
 */
export interface IBizRealmStartRealtimeTracingResult {
    /** 当前定位任务是否开启 */
    isStartSuccess: boolean;
    /** 定位收集周期 */
    collectPeriod: number;
    /** 定位上报周期 */
    reportPeriod: number;
    /** 结果代码 */
    resultCode: string;
    /** 结果信息 */
    resultMsg: string;
}
/**
 * 专属包开启实时定位
 * @apiName biz.realm.startRealtimeTracing
 * @supportVersion android: 6.0.13
 * @author Android:晤歌
 */
export declare function startRealtimeTracing$(params: IBizRealmStartRealtimeTracingParams): Promise<IBizRealmStartRealtimeTracingResult>;
export default startRealtimeTracing$;