dingtalk-jsapi
Version:
钉钉 模块化 多端统一 API
25 lines (24 loc) • 698 B
TypeScript
export declare const apiName = "device.geolocation.stop";
/**
* 关闭持续定位 请求参数定义
* @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$;