mirror of
https://github.com/realm/SwiftLint.git
synced 2026-06-06 20:18:40 +00:00
7 lines
282 B
Swift
7 lines
282 B
Swift
/// Interface providing access to a cache description.
|
|
internal protocol CacheDescriptionProvider {
|
|
/// The cache description which will be used to determine if a previous
|
|
/// cached value is still valid given the new cache value.
|
|
var cacheDescription: String { get }
|
|
}
|