UNPKG

observation-js

Version:

A fully-typed TypeScript client for the waarneming.nl API.

10 lines (9 loc) 176 B
export interface Country { code: string; name: string; } export interface CountryList { next: string | null; previous: string | null; results: Country[]; }