jsdw_ios/Pods/URLNavigator/Sources/URLMatcher/URLMatchResult.swift

9 lines
227 B
Swift

/// Represents an URL match result.
public struct URLMatchResult {
/// The url pattern that was matched.
public let pattern: String
/// The values extracted from the URL placeholder.
public let values: [String: Any]
}