| 48 | } |
| 49 | |
| 50 | export interface PullRequest { |
| 51 | id: number; |
| 52 | number: number; |
| 53 | title: string; |
| 54 | body: string | null; |
| 55 | state: string; |
| 56 | user: { |
| 57 | id: number; |
| 58 | login: string; |
| 59 | }; |
| 60 | merged: boolean; |
| 61 | merged_at: string | null; |
| 62 | created_at: string; |
| 63 | updated_at: string; |
| 64 | } |
| 65 | |
| 66 | export interface Comment { |
| 67 | id: number; |
nothing calls this directly
no outgoing calls
no test coverage detected