stop.d.ts 640 B

1234567891011121314151617181920212223
  1. /**
  2. * 关闭持续定位 请求参数定义
  3. * @apiName device.geolocation.stop
  4. */
  5. export interface IDeviceGeolocationStopParams {
  6. /** 需要停止定位场景id */
  7. sceneId: string;
  8. }
  9. /**
  10. * 关闭持续定位 返回结果定义
  11. * @apiName device.geolocation.stop
  12. */
  13. export interface IDeviceGeolocationStopResult {
  14. /** 停止的定位场景id,或者null */
  15. sceneId: string;
  16. }
  17. /**
  18. * 关闭持续定位
  19. * @apiName device.geolocation.stop
  20. * @supportVersion ios: 3.4.7 android: 3.4.7
  21. */
  22. export declare function stop$(params: IDeviceGeolocationStopParams): Promise<IDeviceGeolocationStopResult>;
  23. export default stop$;