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