| 21 | } |
| 22 | |
| 23 | interface User { |
| 24 | id: number; |
| 25 | login: string; |
| 26 | issuesOpened: number; |
| 27 | prsOpened: number; |
| 28 | commentsMade: number; |
| 29 | } |
| 30 | |
| 31 | interface Comment { |
| 32 | id: number; |
nothing calls this directly
no outgoing calls
no test coverage detected