| 64 | } |
| 65 | |
| 66 | export interface Comment { |
| 67 | id: number; |
| 68 | body: string; |
| 69 | user: { |
| 70 | id: number; |
| 71 | login: string; |
| 72 | }; |
| 73 | created_at: string; |
| 74 | updated_at: string; |
| 75 | } |
| 76 | |
| 77 | export interface IssuesEvent extends BaseEvent { |
| 78 | type: 'IssuesEvent'; |
nothing calls this directly
no outgoing calls
no test coverage detected