GitHub issue data structure
| 26 | |
| 27 | /** GitHub issue data structure */ |
| 28 | interface IssueData { |
| 29 | /** GitHub issue URL */ |
| 30 | issueUrl: string |
| 31 | /** Issue number */ |
| 32 | issueNumber: string |
| 33 | /** Issue title */ |
| 34 | issueTitle: string |
| 35 | /** Issue summary/description */ |
| 36 | issueSummary: string |
| 37 | /** Issue author username */ |
| 38 | issueAuthor: string |
| 39 | /** Issue labels */ |
| 40 | labels: string[] |
| 41 | } |
| 42 | |
| 43 | /** Feishu card text element */ |
| 44 | interface FeishuTextElement { |
nothing calls this directly
no outgoing calls
no test coverage detected