| 16 | } |
| 17 | |
| 18 | export interface BaseEvent { |
| 19 | id: string; |
| 20 | type: string; |
| 21 | actor: Actor; |
| 22 | repo: Repo; |
| 23 | public: boolean; |
| 24 | created_at: string; |
| 25 | org?: { |
| 26 | id: number; |
| 27 | login: string; |
| 28 | gravatar_id: string; |
| 29 | url: string; |
| 30 | avatar_url: string; |
| 31 | }; |
| 32 | } |
| 33 | |
| 34 | export interface Issue { |
| 35 | id: number; |
nothing calls this directly
no outgoing calls
no test coverage detected