UNPKG

@deltares/fews-pi-requests

Version:

Library for making requests to the FEWS PI webservice

19 lines (18 loc) 388 B
/** * WorkflowFssInfo PI_JSON */ export interface WorkflowFssInfoResponse { workflowFssInfo: WorkflowFssInfoClass; } export interface WorkflowFssInfoClass { forecastingShellCount: number; fssGroups: FssGroup[]; } export interface FssGroup { id: string; name: string; forecastingShells: ForecastingShell[]; } export interface ForecastingShell { id: number; }