> For the complete documentation index, see [llms.txt](https://docs.conanjs.io/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.conanjs.io/api/conan-state-classes/connectedstate.md).

# 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> |
