| 32 | } |
| 33 | |
| 34 | export interface Issue { |
| 35 | id: number; |
| 36 | number: number; |
| 37 | title: string; |
| 38 | body: string | null; |
| 39 | state: string; |
| 40 | user: { |
| 41 | id: number; |
| 42 | login: string; |
| 43 | }; |
| 44 | labels: Array<{ name: string }>; |
| 45 | created_at: string; |
| 46 | updated_at: string; |
| 47 | closed_at: string | null; |
| 48 | } |
| 49 | |
| 50 | export interface PullRequest { |
| 51 | id: number; |
nothing calls this directly
no outgoing calls
no test coverage detected