zhizhi/node_modules/dingtalk-jsapi/api/biz/realm/startRealtimeTracing.d.ts

31 lines
916 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 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$;