| 21 | } |
| 22 | |
| 23 | export interface DriftIssue { |
| 24 | type: 'missing' | 'outdated' | 'inconsistent' | 'orphaned'; |
| 25 | file: string; |
| 26 | message: string; |
| 27 | severity: 'error' | 'warning' | 'info'; |
| 28 | suggestion?: string; |
| 29 | } |
| 30 | |
| 31 | export interface SyncOptions { |
| 32 | targetDir: string; |
nothing calls this directly
no outgoing calls
no test coverage detected