@deltares/fews-pi-requests
Version:
Library for making requests to the FEWS PI webservice
29 lines (28 loc) • 591 B
TypeScript
/**
* WebOCMicroFrontEndsResponse PI_JSON
*/
export interface WebOCMicroFrontEndsResponse {
microFrontEnds?: WebOCMicroFrontEnds[];
}
export interface WebOCMicroFrontEnds {
/**
* the id of the micro front end
*/
id: string;
/**
* icon of the micro front end
*/
icon: string;
/**
* Remote id of the micro front end
*/
remoteId: string;
/**
* Component id of the micro front end
*/
componentId: string;
/**
* Display name where the micro front end will be shown in the WebOC
*/
display: string;
}