| 16 | const STALE_CACHE_DAYS = 30; |
| 17 | |
| 18 | export class FetchCache { |
| 19 | private warnings: CacheWarning[] = []; |
| 20 | private staleWarnings: StaleCacheWarning[] = []; |
| 21 | private indexCache: Record<string, string> | null = null; |
nothing calls this directly
no outgoing calls
no test coverage detected