| 33 | } |
| 34 | |
| 35 | interface Issue { |
| 36 | id: number; |
| 37 | repoId: number; |
| 38 | repoFullName: string; |
| 39 | number: number; |
| 40 | title: string; |
| 41 | body: string | null; |
| 42 | state: string; |
| 43 | author: string; |
| 44 | labels: string[]; |
| 45 | comments: Comment[]; |
| 46 | createdAt: string; |
| 47 | updatedAt: string; |
| 48 | closedAt: string | null; |
| 49 | } |
| 50 | |
| 51 | interface Pull { |
| 52 | id: number; |
nothing calls this directly
no outgoing calls
no test coverage detected