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