| 14 | |
| 15 | // Data structures matching the types we'll expose to codemode |
| 16 | interface Repo { |
| 17 | id: number; |
| 18 | owner: string; |
| 19 | name: string; |
| 20 | fullName: string; |
| 21 | } |
| 22 | |
| 23 | interface User { |
| 24 | id: number; |
nothing calls this directly
no outgoing calls
no test coverage detected