setGeoCircle.d.ts 275 B

12345678910
  1. import { GeoCircle } from 'src/types';
  2. export declare function setGeoCircle(geoCircle?: GeoCircle): {
  3. '@type': string;
  4. geoMidpoint: {
  5. '@type': string;
  6. latitude: string;
  7. longitude: string;
  8. };
  9. geoRadius: string;
  10. } | undefined;