Interface ILocationData

interface ILocationData {
    location: null | { lat: number; lng: number };
    radius: number;
}

Properties

Properties

location: null | { lat: number; lng: number }
radius: number