stopGeolocation.d.ts 287 B

1234567891011
  1. export interface GeolocationParams {
  2. sceneId: string;
  3. }
  4. declare function stopGeolocation(params: GeolocationParams): Promise<string | null>;
  5. declare namespace stopGeolocation {
  6. var version: {
  7. android: string;
  8. ios: string;
  9. };
  10. }
  11. export default stopGeolocation;