(params: { owner: string; repo: string })
| 1 | export function repoProperties(params: { owner: string; repo: string }) { |
| 2 | return [ |
| 3 | { |
| 4 | label: "Owner", |
| 5 | text: params.owner, |
| 6 | }, |
| 7 | { |
| 8 | label: "Repo", |
| 9 | text: params.repo, |
| 10 | }, |
| 11 | ]; |
| 12 | } |
| 13 | |
| 14 | export function issueProperties(params: { issueNumber: number }) { |
| 15 | return [ |
no outgoing calls
no test coverage detected
searching dependent graphs…