| 315 | } |
| 316 | |
| 317 | export interface Issue { |
| 318 | url: string; |
| 319 | repository_url: string; |
| 320 | labels_url: string; |
| 321 | comments_url: string; |
| 322 | events_url: string; |
| 323 | html_url: string; |
| 324 | id: number; |
| 325 | number: number; |
| 326 | title: string; |
| 327 | user: User; |
| 328 | locked: boolean; |
| 329 | labels: { |
| 330 | url: string; |
| 331 | name: string; |
| 332 | color: string; |
| 333 | }[]; |
| 334 | state: string; |
| 335 | assignee: null; // todo, |
| 336 | milestone: null; // todo, |
| 337 | comments: number; |
| 338 | created_at: string; |
| 339 | updated_at: string; |
| 340 | closed_at: null; // todo, |
| 341 | pull_request: { |
| 342 | html_url: null; // todo, |
| 343 | diff_url: null; // todo, |
| 344 | patch_url: null; // todo |
| 345 | }; |
| 346 | body: string; |
| 347 | score: number; |
| 348 | reactions: Reactions; |
| 349 | author_association: CommentAuthorAssociation; |
| 350 | } |
| 351 | |
| 352 | interface FileContentsResponse { |
| 353 | type: string; |
nothing calls this directly
no outgoing calls
no test coverage detected