Interface IStateProvider<TState>
Interface for a Store with a specific state type.
Namespace: Unity.AppUI.Redux
Assembly: Unity.AppUI.Redux.dll
Syntax
public interface IStateProvider<out TState>
Type Parameters
Name | Description |
---|---|
TState | The type of the state. |
Methods
GetState()
Returns a state of type TState
.
Declaration
TState GetState()
Returns
Type | Description |
---|---|
TState | The state. |