UNPKG

@deltares/fews-pi-requests

Version:

Library for making requests to the FEWS PI webservice

17 lines (16 loc) 253 B
/** * TimeSteps PI_JSON */ export interface TimeStepsResponse { timeSteps?: TimeSteps[]; } export interface TimeSteps { /** * id of the time step */ id: string; /** * Label of the time step. */ label: string; }