UNPKG

bmkg-wrapper

Version:

Sebuah API wrapper untuk mempermudah akses API data terbuka Badan Meteorologi, Klimatologi, dan Geofisika.

5 lines (4 loc) 316 B
import type { DataCuaca, KodeWilayah } from '../types/index.js'; export declare const parseCsv: (url: string) => Promise<KodeWilayah[]>; export declare const searchKodeWilayah: (data: KodeWilayah[], value: string) => string | null; export declare const parseWeatherData: (wilayah: string) => Promise<DataCuaca>;