getGeolocationStatus.d.ts 328 B

12345678910111213
  1. export interface GeolocationStatusParams {
  2. sceneIds: string[];
  3. }
  4. declare function getGeolocationStatus(args: GeolocationStatusParams): Promise<{
  5. sceneId: string;
  6. }[]>;
  7. declare namespace getGeolocationStatus {
  8. var version: {
  9. android: string;
  10. ios: string;
  11. };
  12. }
  13. export default getGeolocationStatus;