MrShi
7 天以前 1ab34d6347171b10acf78fcd3d6678eac0483bae
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/**
 * 关闭持续定位 请求参数定义
 * @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$;