zhizhi/node_modules/dingtalk-jsapi/api/device/geolocation/stop.d.ts

24 lines
640 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 device.geolocation.stop
*/
export interface IDeviceGeolocationStopParams {
/** 需要停止定位场景id */
sceneId: string;
}
/**
* 关闭持续定位 返回结果定义
* @apiName device.geolocation.stop
*/
export interface IDeviceGeolocationStopResult {
/** 停止的定位场景id或者null */
sceneId: string;
}
/**
* 关闭持续定位
* @apiName device.geolocation.stop
* @supportVersion ios: 3.4.7 android: 3.4.7
*/
export declare function stop$(params: IDeviceGeolocationStopParams): Promise<IDeviceGeolocationStopResult>;
export default stop$;