| 47 | } |
| 48 | |
| 49 | export interface GhCache { |
| 50 | isFeatureAvailable: typeof ghCache.isFeatureAvailable; |
| 51 | restoreCache: typeof ghCache.restoreCache; |
| 52 | saveCache: (paths: string[], key: string) => Promise<string | number>; |
| 53 | } |
| 54 | |
| 55 | export interface CacheProvider { |
| 56 | name: string; |
nothing calls this directly
no outgoing calls
no test coverage detected