| 13 | type GerritProjectState = 'ACTIVE' | 'READ_ONLY' | 'HIDDEN'; |
| 14 | |
| 15 | interface GerritProjectInfo { |
| 16 | id: string; |
| 17 | state?: GerritProjectState; |
| 18 | web_links?: GerritWebLink[]; |
| 19 | } |
| 20 | |
| 21 | interface GerritProject { |
| 22 | name: string; |
nothing calls this directly
no outgoing calls
no test coverage detected