UNPKG

weather-in-terminal

Version:

A simple CLI to see the weather while you're in your terminal.

15 lines 388 B
import { Temperature } from './temperature'; import { Wind } from './wind'; export interface IWeatherCondition { city: string; date: Date; icon: number; phrase: string; isDaylight: boolean; temperature: Temperature; realFeelTemperature: Temperature; humidity: number; wind: Wind; cloudCover: number; } //# sourceMappingURL=weatherCondition.d.ts.map