Type Aliases
The following type aliases are available globally.
-
An
EffectMiddleware
with no dependencies (Void) and having Input and Output Actions as the same type (SymmetricalEffectMiddleware
).Declaration
Swift
@available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) public typealias SimpleEffectMiddleware<Action, State> = EffectMiddleware<Action, Action, State, Void>
-
An
EffectMiddleware
having Input and Output Actions as the same type.Declaration
Swift
@available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) public typealias SymmetricalEffectMiddleware<Action, State, Dependencies> = EffectMiddleware<Action, Action, State, Dependencies>