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

27 lines
787 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.stopRealtimeTracing
*/
export interface IBizRealmStopRealtimeTracingParams {
}
/**
* 专属包停止实时定位 返回结果定义
* @apiName biz.realm.stopRealtimeTracing
*/
export interface IBizRealmStopRealtimeTracingResult {
/** 定位任务关闭状态 */
isTaskStopped: boolean;
/** 结果代码 */
resultCode: string;
/** 结果信息 */
resultMsg: string;
}
/**
* 专属包停止实时定位
* @apiName biz.realm.stopRealtimeTracing
* @supportVersion android: 6.0.13
* @author Android晤歌
*/
export declare function stopRealtimeTracing$(params: IBizRealmStopRealtimeTracingParams): Promise<IBizRealmStopRealtimeTracingResult>;
export default stopRealtimeTracing$;