Interface CurrentWeather

Describes the current weather.

interface CurrentWeather {
    @type: "currentWeather";
    emoji: string;
    temperature: number;
}

Properties

@type: "currentWeather"
emoji: string

Emoji representing the weather.

temperature: number

Temperature, in degree Celsius.