# ConnectedState

This interface contains all the information required to access a Conan state. It is the state components use once they are connected:

```typescript
export interface ConnectedState<DATA, ACTIONS> {
    data: DATA,
    actions: ACTIONS,
    monitorInfo: MonitorInfo
}
```

�

| Property    | Description                                                                                                                         |
| ----------- | ----------------------------------------------------------------------------------------------------------------------------------- |
| data        | <p><strong>Type:</strong>  <code>DATA</code> </p><p>the data part of the Conan state</p>                                            |
| actions     | <p><strong>Type:</strong>  <code>ACTIONS</code></p><p><code>The Conan state actions</code></p>                                      |
| monitorInfo | <p><strong>Type:</strong>  <code>MonitorInfo</code> </p><p><code>The MonitorInfo object associated with this Conan state</code></p> |
