(prUrl: string)
| 30 | export interface WorktreePool { |
| 31 | get(prUrl: string): PoolEntry | undefined; |
| 32 | has(prUrl: string): boolean; |
| 33 | resolve(prUrl: string): string | undefined; |
| 34 | ensure(runtime: ReviewGitRuntime, metadata: PRMetadata): Promise<PoolEntry>; |
| 35 | entries(): IterableIterator<PoolEntry>; |
no outgoing calls