MCPcopy
hub / github.com/CherryHQ/cherry-studio / IssueData

Interface IssueData

scripts/feishu-notify.ts:28–41  ·  view source on GitHub ↗

GitHub issue data structure

Source from the content-addressed store, hash-verified

26
27/** GitHub issue data structure */
28interface 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 */
44interface FeishuTextElement {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected