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
}

Last updated