UNPKG

react-native-weather-api

Version:

Real-time weather information for any location on Earth, including over 200,000 cities.

19 lines 634 B
import { CallProps, ShowWeatherProps } from "./types"; export declare function getWeather(args: CallProps): Promise<undefined>; export declare function dailyForecast(args: CallProps): Promise<undefined>; export declare function fiveDaysForecast(args: CallProps): Promise<undefined>; export declare class showWeather implements ShowWeatherProps { name: string; country: string; temp: number; temp_min: number; temp_max: number; feels_like: number; wind: number; pressure: number; humidity: number; description: string; icon: string; constructor(); } //# sourceMappingURL=weather.d.ts.map