Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

GeoLocation

import type { GeoLocation } from "https://aws-api.deno.dev/v0.4/services/securityhub.ts?docs=full";

Provides the latitude and longitude coordinates of a location.

interface GeoLocation {
Lat?: number | null;
Lon?: number | null;
}

§Properties

§
Lat?: number | null
[src]

The latitude of the location.

§
Lon?: number | null
[src]

The longitude of the location.