interface CityWeather {
    base: string;
    clouds: Clouds;
    cod: number;
    coord: Coordinate;
    dt: number;
    id: number;
    main: WeatherMain;
    name: string;
    sys: System;
    timezone: number;
    visibility: string;
    weather: Weather[];
    wind: Wind;
}

Properties

base: string
clouds: Clouds
cod: number
coord: Coordinate
dt: number
id: number
main: WeatherMain
name: string
sys: System
timezone: number
visibility: string
weather: Weather[]
wind: Wind

Generated using TypeDoc