| 146 | } |
| 147 | |
| 148 | export interface IssueFile { |
| 149 | id: number; |
| 150 | number: number; |
| 151 | title: string; |
| 152 | body: string | null; |
| 153 | state: string; |
| 154 | author: string; |
| 155 | labels: string[]; |
| 156 | created_at: string; |
| 157 | updated_at: string; |
| 158 | closed_at: string | null; |
| 159 | comments: CommentFile[]; |
| 160 | } |
| 161 | |
| 162 | export interface PullFile { |
| 163 | id: number; |
nothing calls this directly
no outgoing calls
no test coverage detected