Links
Comment on page

ConnectedState

This interface contains all the information required to access a Conan state. It is the state components use once they are connected:
export interface ConnectedState<DATA, ACTIONS> {
data: DATA,
actions: ACTIONS,
monitorInfo: MonitorInfo
}
Property
Description
data
Type: DATA
the data part of the Conan state
actions
Type: ACTIONS
The Conan state actions
monitorInfo
Type: MonitorInfo
The MonitorInfo object associated with this Conan state
Last modified 3yr ago