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

24 lines
640 B
TypeScript
Raw Normal View History

/**
*
* @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$;