geonet
Version:
A Node.js API wrapper for GeoNet — Aotearoa's geological hazard monitoring system.
10 lines (9 loc) • 318 B
TypeScript
export declare enum JSONFormatTypes {
APPLICATION_JSON = "application/json",
APPLICATION_JSON_VERSION_2 = "application/json;version=2",
APPLICATION_VND_GEO_JSON_VERSION_2 = "application/vnd.geo+json;version=2"
}
export interface BaseServiceGETRequest {
endpoint: string;
format: JSONFormatTypes;
}