Files
nodeMap/docs/redux/slices/webService/gisStationsMeasurementsSlice.md

31 lines
539 B
Markdown
Raw Permalink Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!-- /docs/redux/slices/webservice/gisStationsMeasurementsSlice.md -->
# 🧩 gisStationsMeasurementsSlice.js
Verwaltet Messwerte einzelner Stationen (z.B. Schleifenwiderstand, Isolation) aus
Webservice-Antworten.
## Zustand
```js
{
data: [],
status: "idle" | "loading" | "succeeded" | "failed",
error: string | null
}
```
## Thunk
- `fetchGisStationsMeasurementsThunk()`
## Selector
```js
selectGisStationsMeasurements = state => state.gisStationsMeasurements.data;
```
---
[Zurück zur Übersicht](../../../README.md)