UNPKG

@deltares/fews-pi-requests

Version:

Library for making requests to the FEWS PI webservice

17 lines (16 loc) 299 B
/** * TimeSeriesFlagSources PI_JSON */ export interface TimeSeriesFlagSourcesResponse { flagSources?: TimeSeriesFlagSource[]; } export interface TimeSeriesFlagSource { /** * the id of the flag */ id: string | null; /** * Name of the flag */ name: string; }