Files
doxy/Library/Sources/Internal/Protocols/Pathable.swift
T

10 lines
197 B
Swift

/// A type that provides a relative path representation.
protocol Pathable {
// MARK: Properties
/// A read-only relative path representation.
var path: String { get }
}