UNPKG

@mugan86/openweather-api

Version:
11 lines (10 loc) 165 B
/** * Location coordinates interface with lon and lat properties */ export interface Location { /** * @ignore */ lat: number; lon: number; }