Skip to main content
The Deno 2 Release Candidate is here
Learn more
Module

x/openweather_apis_wrapper/src/mod.ts>ENDPOINTS

A wrapper for the APIs provided by OpenWeather
Latest
variable ENDPOINTS
Re-export
import { ENDPOINTS } from "https://deno.land/x/openweather_apis_wrapper@v0.4.4/src/mod.ts";

type

{ DIRECT_GEOCODING: { BY_LOCATION_NAME: (q: string, limit?: number) => unknown; BY_ZIP_OR_POST_CODE: (zip_code: string) => unknown; }; REVERSE_GEOCODING: (coordinates: Coordinates, limit?: number) => unknown; CURRENT_WEATHER: (
coordinates: Coordinates,
units?: Units,
lang?: Lang,
) => unknown; FORECAST: { 5DAY3HOUR: (
coordinates: Coordinates,
cnt?: number,
units?: Units,
lang?: Lang,
) => unknown; }; }