| 3 | import path from "node:path"; |
| 4 | |
| 5 | export interface CacheWarning { |
| 6 | url: string; |
| 7 | reason: string; |
| 8 | cachedAt?: string; |
| 9 | } |
| 10 | |
| 11 | export interface StaleCacheWarning { |
| 12 | url: string; |
nothing calls this directly
no outgoing calls
no test coverage detected