* Full cache file structure
| 61 | * Full cache file structure |
| 62 | */ |
| 63 | interface CacheFile { |
| 64 | version: number; |
| 65 | files: Record<string, FileCache>; |
| 66 | crossFileEdges: CrossFileEdge[]; |
| 67 | workflows: Record<string, WorkflowInfo>; |
| 68 | } |
| 69 | |
| 70 | /** |
| 71 | * Metadata layer for compatibility |
nothing calls this directly
no outgoing calls
no test coverage detected