| 13 | import path from 'node:path'; |
| 14 | |
| 15 | export interface DriftReport { |
| 16 | score: number; // 0-100 consistency score |
| 17 | level: 'healthy' | 'warning' | 'critical'; |
| 18 | issues: DriftIssue[]; |
| 19 | suggestions: string[]; |
| 20 | timestamp: string; |
| 21 | } |
| 22 | |
| 23 | export interface DriftIssue { |
| 24 | type: 'missing' | 'outdated' | 'inconsistent' | 'orphaned'; |
nothing calls this directly
no outgoing calls
no test coverage detected