UNPKG

@deltares/fews-pi-requests

Version:

Library for making requests to the FEWS PI webservice

16 lines (15 loc) 274 B
/** * ArchiveLocationsResponse PI_JSON */ export interface ArchiveLocations { /** * ArchiveLocation */ locations: ArchiveLocation[]; } export interface ArchiveLocation { locationId: string; shortName?: string; lat: string; lon: string; }