Type Alias ServerLocationMessage

ServerLocationMessage: {
    location: {
        address?: string;
        latitude: string;
        longitude: string;
        name?: string;
    };
    type: "location";
}

Type declaration

  • location: { address?: string; latitude: string; longitude: string; name?: string }
  • type: "location"