UNPKG

@deltares/fews-pi-requests

Version:

Library for making requests to the FEWS PI webservice

20 lines (19 loc) 282 B
/** * ColorsResponse PI_JSON */ export interface ColorsResponse { /** * Colors */ colors: Color[]; } export interface Color { /** * the hex color code */ color: string; /** * The optional name of the color */ name?: string; }