Interface IStore<TState>
Representation of a Redux Store.
Inherited Members
Namespace: Unity.AppUI.Redux
Assembly: Unity.AppUI.Redux.dll
Syntax
public interface IStore<TState> : IStore, IDispatchable, IDisposable, IStateProvider<TState>, INotifiable<TState>
Type Parameters
Name | Description |
---|---|
TState | The type of the store state. |
Properties
reducer
The reducer function that will be used to update the state.
Declaration
Reducer<TState> reducer { get; }
Property Value
Type | Description |
---|---|
Reducer<TState> |