Type alias GeolocationEvent

GeolocationEvent: {
    type: "initializing";
} | {
    position: GeolocationPosition;
    type: "position";
} | {
    error: GeolocationError;
    type: "error";
}

Type declaration

  • type: "initializing"

Type declaration

Type declaration

Generated using TypeDoc