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; 
}
Optional address?: string
latitude: string
longitude: string
Optional name?: string
type: "location"