export default interface ILocation {
    type: "Point";
    coordinates: [number, number];
}
