Interface IThunkAPI<TArg, TPayload>
Thunk API definition with an argument passed when dispatching the thunk.
Inherited Members
Namespace: Unity.AppUI.Redux
Assembly: Unity.AppUI.Redux.dll
Syntax
public interface IThunkAPI<out TArg, in TPayload> : IThunkAPI<TPayload>, IAPIInterceptor<TPayload>, IThunkAPI
Type Parameters
Name | Description |
---|---|
TArg | The type of the argument that the thunk has received. |
TPayload | The type of the payload that the thunk will return. |
Properties
arg
The argument that the thunk has received when it was dispatched.
Declaration
TArg arg { get; }
Property Value
Type | Description |
---|---|
TArg |