UNPKG

@deltares/fews-pi-requests

Version:

Library for making requests to the FEWS PI webservice

17 lines (16 loc) 298 B
/** * Permissions PI_JSON */ export interface PermissionsResponse { permissions?: Permission[]; } export interface Permission { /** * id of the permission */ id: string; /** * True if the permission is assigned to the current user. */ assigned: boolean; }