| 22 | } |
| 23 | |
| 24 | interface Article { |
| 25 | id: number; |
| 26 | title: string; |
| 27 | url: string; |
| 28 | image?: string; |
| 29 | category?: string; |
| 30 | created_at: string; |
| 31 | author: string; |
| 32 | comments: number; |
| 33 | reactions: number; |
| 34 | } |
| 35 | |
| 36 | export class GitHubAPI { |
| 37 | private static readonly REPO_OWNER = 'chokcoco'; |
nothing calls this directly
no outgoing calls
no test coverage detected