| 160 | } |
| 161 | |
| 162 | export interface PullFile { |
| 163 | id: number; |
| 164 | number: number; |
| 165 | title: string; |
| 166 | body: string | null; |
| 167 | state: string; |
| 168 | author: string; |
| 169 | merged: boolean; |
| 170 | merged_at: string | null; |
| 171 | created_at: string; |
| 172 | updated_at: string; |
| 173 | comments: CommentFile[]; |
| 174 | } |
| 175 | |
| 176 | export interface CommentFile { |
| 177 | id: number; |
nothing calls this directly
no outgoing calls
no test coverage detected