| 1 | import { cache } from './cache'; |
| 2 | |
| 3 | interface GitHubIssue { |
| 4 | id: number; |
| 5 | number: number; |
| 6 | title: string; |
| 7 | body: string; |
| 8 | created_at: string; |
| 9 | updated_at: string; |
| 10 | user: { |
| 11 | login: string; |
| 12 | avatar_url: string; |
| 13 | }; |
| 14 | comments: number; |
| 15 | reactions: { |
| 16 | total_count: number; |
| 17 | }; |
| 18 | labels: Array<{ |
| 19 | name: string; |
| 20 | color: string; |
| 21 | }>; |
| 22 | } |
| 23 | |
| 24 | interface Article { |
| 25 | id: number; |
nothing calls this directly
no outgoing calls
no test coverage detected