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.
1 parent 9af0ed8 commit 2bd4640Copy full SHA for 2bd4640
Sources/URLNavigator.swift
@@ -22,6 +22,9 @@
22
23
import UIKit
24
25
+/// A typealias for avoiding namespace conflict.
26
+public typealias _URLConvertible = URLConvertible
27
+
28
/// URLNavigator provides an elegant way to navigate through view controllers by URLs. URLs should be mapped by using
29
/// `URLNavigator.map(_:_:)` function.
30
///
@@ -57,6 +60,9 @@ import UIKit
57
60
/// - seealso: `URLNavigable`
58
61
open class URLNavigator {
59
62
63
+ /// A typealias for avoiding namespace conflict.
64
+ public typealias URLConvertible = _URLConvertible
65
66
/// A closure type which has URL and values for parameters.
67
public typealias URLOpenHandler = (_ url: URLConvertible, _ values: [String: Any]) -> Bool
68
0 commit comments