@deltares/fews-ssd-requests
Version:
Library for making requests to the FEWS SSD webservice
8 lines (7 loc) • 354 B
TypeScript
import { ResponseParser } from "./responseParser.js";
import { SsdGetCapabilitiesResponse } from "../response/index.js";
export declare class CapabilitiesParsers implements ResponseParser<SsdGetCapabilitiesResponse> {
private excludedGroups;
constructor(excludedGroups: string[]);
parse(response: any): Promise<SsdGetCapabilitiesResponse>;
}