| 75 | } |
| 76 | |
| 77 | export interface IssuesEvent extends BaseEvent { |
| 78 | type: 'IssuesEvent'; |
| 79 | payload: { |
| 80 | action: 'opened' | 'closed' | 'reopened'; |
| 81 | issue: Issue; |
| 82 | }; |
| 83 | } |
| 84 | |
| 85 | export interface IssueCommentEvent extends BaseEvent { |
| 86 | type: 'IssueCommentEvent'; |
nothing calls this directly
no outgoing calls
no test coverage detected