Files
SwiftLint/Source/SwiftLintFramework/Protocols/CacheDescriptionProvider.swift
T
JP SimardandGitHub 9c414932d8 Add more documentation comments (#4942)
In preparation for these declarations to become public.
2023-04-26 14:18:13 -04:00

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 }
}