UNPKG

@eggtronic/react-weather-widget

Version:
10 lines (9 loc) 309 B
/// <reference types="react" /> import { DailyWeatherData } from './types/weatherWidget'; interface WeatherDailyProps { daily: DailyWeatherData[]; from: number; to: number; } declare function WeatherDaily({ daily, from, to }: WeatherDailyProps): JSX.Element; export default WeatherDaily;