File tree Expand file tree Collapse file tree 1 file changed +12
-3
lines changed
Sources/ComposableArchitecture Expand file tree Collapse file tree 1 file changed +12
-3
lines changed Original file line number Diff line number Diff line change @@ -49,12 +49,21 @@ public final class ViewStore<State, Action>: ObservableObject {
4949 @available (
5050 * , deprecated,
5151 message:
52- """
53- Consider using `.produced` instead, this variable is added for backward compatibility and will be removed in the next major release.
54- """
52+ """
53+ Consider using `.produced` instead, this property exists for backwards compatibility and will be removed in the next major release.
54+ """
5555 )
5656 public var producer : StoreProducer < State > { produced }
5757
58+ @available (
59+ * , deprecated,
60+ message:
61+ """
62+ Consider using `.produced` instead, this property exists for backwards compatibility and will be removed in the next major release.
63+ """
64+ )
65+ public var publisher : StoreProducer < State > { produced }
66+
5867 /// Initializes a view store from a store.
5968 ///
6069 /// - Parameters:
You can’t perform that action at this time.
0 commit comments