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
@available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *) public typealias SimpleEffectMiddleware<Action, State> = EffectMiddleware<Action, Action, State, Void> -
An
EffectMiddlewarehaving 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>
View on GitHub
Type Aliases Reference