Output
Publisher.swift:14typealias Output = Action
typealias Output = Action
import ComposableArchitecture
The Composable Architecture (TCA, for short) is a library for building applications in a consistent and understandable way, with composition, testing, and ergonomics in mind. It can be used in SwiftUI, UIKit, and more, and on any Apple platform (iOS, macOS, tvOS, and watchOS).
struct _EffectPublisher<Action>
init(_ effect: Effect<Action>)
func receive(subscriber: some Combine.Subscriber<Action, Failure>)
typealias Failure = Never