apps/live-weather/src/app/shared/models/ICoordinate.ts
Interface for classes that implements geological coordinates
lat: string
string
Latitude of the place
lon: string
Longitude of the place
export interface ICoordinate { /** * Longitude of the place */ lon: string; /** * Latitude of the place */ lat: string; }