@deltares/fews-pi-requests
Version:
Library for making requests to the FEWS PI webservice
13 lines • 454 B
JavaScript
export function isSchematicStatusDisplay(component) {
return component.type === 'SchematicStatusDisplay';
}
export function isTopologyDisplay(component) {
return component.type === 'TopologyDisplay';
}
export function isSpatialDisplay(component) {
return component.type === 'SpatialDisplay';
}
export function isSystemMonitor(component) {
return component.type === 'SystemMonitor';
}
//# sourceMappingURL=webOcCompontentsTypeGuards.js.map