( runtime: PRRuntime, ref: PRRef, )
| 115 | } |
| 116 | |
| 117 | export async function fetchPRList( |
| 118 | runtime: PRRuntime, |
| 119 | ref: PRRef, |
| 120 | ): Promise<PRListItem[]> { |
| 121 | if (ref.platform === "github") return fetchGhPRList(runtime, ref); |
| 122 | return []; // GitLab: not yet implemented |
| 123 | } |
nothing calls this directly
no test coverage detected