| 24 | // ============================================ |
| 25 | |
| 26 | interface ComponentAuditEntry { |
| 27 | name: string; |
| 28 | status: 'documented' | 'partially-documented' | 'missing'; |
| 29 | docFile: string | null; |
| 30 | sourceInputs: string[]; |
| 31 | sourceOutputs: string[]; |
| 32 | documentedInputs: string[]; |
| 33 | documentedOutputs: string[]; |
| 34 | missingInputs: string[]; |
| 35 | missingOutputs: string[]; |
| 36 | staleInputs: string[]; |
| 37 | staleOutputs: string[]; |
| 38 | } |
| 39 | |
| 40 | interface AuditReport { |
| 41 | timestamp: string; |
nothing calls this directly
no outgoing calls
no test coverage detected