UNPKG

@ciag/sentinel-hub-wms

Version:

a API to create the sentinel ogs requests, and tools to apply on the data

19 lines (18 loc) 484 B
export declare class SentinelHubURL { preset: RequestInfo; parameters: any[]; link: string; request: string; UUID: string; timeFrom: any; timeTo: any; constructor(preset?: RequestInfo); addUUID(uuid: string): void; addParameter(name: string, value: any): void; setTimeFrom(date: Date): void; setTimeTo(date: Date): void; clearTime(): void; getLink(): string; getProxy(): string; private getLinkTime; }