Type Alias IndicatorDataStatus

IndicatorDataStatus:
    | { state: "loading"
    | "ready"
    | "empty"
    | "unsupported" }
    | { error: unknown; state: "error" }

Observable state of an indicator's external data lifecycle.