We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Action+Extension.swift
1 parent bcaf1f6 commit ae8d7ceCopy full SHA for ae8d7ce
Sources/Action/Action+Extensions.swift
@@ -1,15 +1,7 @@
1
-//
2
-// Action+Extensions.swift
3
-// Action
4
5
-// Created by Obi Bob on 01.03.19.
6
-// Copyright © 2019 CezaryKopacz. All rights reserved.
7
8
-
9
import Foundation
10
import RxSwift
11
12
-extension Action {
+public extension Action {
13
/// Filters out `notEnabled` errors and returns
14
/// only underlying error from `ActionError`
15
public var underlyingError: Observable<Error> {
@@ -22,7 +14,7 @@ extension Action {
22
}
23
24
16
25
-extension Action where Input == Void {
17
+public extension Action where Input == Void {
26
18
/// use to trigger an action.
27
19
@discardableResult
28
20
public func execute() -> Observable<Element> {
0 commit comments