| 6 | export type ReviewSince = "last_shown" | "last_review" | "workspace_open"; |
| 7 | |
| 8 | export interface ReviewSummary { |
| 9 | files: number; |
| 10 | additions: number; |
| 11 | removals: number; |
| 12 | } |
| 13 | |
| 14 | export interface ReviewFile { |
| 15 | path: string; |
nothing calls this directly
no outgoing calls
no test coverage detected