Type Aliases
The following type aliases are available globally.
-
An
EffectMiddlewarewith no dependencies (Void) and having Input and Output Actions as the same type (SymmetricalEffectMiddleware).Declaration
Swift
public typealias SimpleEffectMiddleware<Action, State> = EffectMiddleware<Action, Action, State, Void> -
An
EffectMiddlewarehaving Input and Output Actions as the same type.Declaration
Swift
public typealias SymmetricalEffectMiddleware<Action, State, Dependencies> = EffectMiddleware<Action, Action, State, Dependencies>
View on GitHub
Type Aliases Reference