publisher

A publisher that emits when state changes.

Store.swift:433
@MainActor var publisher: StorePublisher<State> { get }

This publisher supports dynamic member lookup so that you can pluck out a specific field in the state:

store.publisher.alert
  .sink { ... }