| 7 | } |
| 8 | |
| 9 | interface GitHubIssue { |
| 10 | number: number; |
| 11 | title: string; |
| 12 | state: string; |
| 13 | state_reason?: string; |
| 14 | user: { id: number }; |
| 15 | created_at: string; |
| 16 | closed_at?: string; |
| 17 | } |
| 18 | |
| 19 | interface GitHubComment { |
| 20 | id: number; |
nothing calls this directly
no outgoing calls
no test coverage detected