@geogirafe/lib-geoportal
Version:
GeoGirafe is a flexible application to build online geoportals.
17 lines (16 loc) • 504 B
TypeScript
import { ConformanceLevel } from '../tools/ogcapi/ogcapiconformance.js';
export default class ServerOgcApi {
url: string;
conformsTo?: Record<ConformanceLevel, boolean>;
constructor(url: string);
}
export type HttpMethod = 'GET' | 'POST' | 'PUT' | 'DELETE' | 'OPTIONS';
export declare const OgcApiDefaultEncoding = "application/json";
export type OgcApiLinksResponse = {
href: string;
rel: string;
type?: string;
title?: string;
hreflang?: string;
length?: number;
};