UNPKG

@eggtronic/react-weather-widget

Version:
10 lines (9 loc) 392 B
/// <reference types="react" /> import { WeatherData, DailyWeatherData, CurrentWeatherData } from './types/weatherWidget'; interface WeatherHeaderProps { today: DailyWeatherData; current: CurrentWeatherData; timezone: WeatherData['timezone']; } declare function WeatherHeader({ today, current, timezone, }: WeatherHeaderProps): JSX.Element; export default WeatherHeader;