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