| 52 | } |
| 53 | |
| 54 | interface Pull { |
| 55 | id: number; |
| 56 | repoId: number; |
| 57 | repoFullName: string; |
| 58 | number: number; |
| 59 | title: string; |
| 60 | body: string | null; |
| 61 | state: string; |
| 62 | author: string; |
| 63 | merged: boolean; |
| 64 | mergedAt: string | null; |
| 65 | comments: Comment[]; |
| 66 | createdAt: string; |
| 67 | updatedAt: string; |
| 68 | } |
| 69 | |
| 70 | interface CodemodeData { |
| 71 | repos: Repo[]; |
nothing calls this directly
no outgoing calls
no test coverage detected