| 1 | import { execSync } from 'child_process' |
| 2 | |
| 3 | export interface IAPIPR { |
| 4 | readonly title: string |
| 5 | readonly body: string |
| 6 | readonly headRefName: string |
| 7 | readonly url: string |
| 8 | } |
| 9 | |
| 10 | export function fetchPR(id: number): IAPIPR | null { |
| 11 | try { |
nothing calls this directly
no outgoing calls
no test coverage detected