@deltares/fews-ssd-requests
Version:
Library for making requests to the FEWS SSD webservice
13 lines (12 loc) • 332 B
TypeScript
import { ClickType } from "../clickType.js";
import { OptionsType } from "../optionsType.js";
export interface ActionRequest {
panelId: string;
objectId?: string;
clickType: ClickType;
timeZero?: string;
options?: OptionsType[];
config?: boolean;
useDisplayUnits?: boolean;
convertDatum?: boolean;
}